Am Donnerstag, 30. Mai 2019, 13:52:40 CEST schrieb Rich Shepard:
> According to the 2008 pdflscape package doc it works with the dvips, pdftex,
> and other drivers but not specifically with pdflatex. I thought I had this
> package working but after revising the document it no longer works. A mwe is
> attached.
> 
> The preamble uses both packages (pdflscape and atbegshi) and the page to be
> rotated is enclosed between \begin{landscape} and \end{landscape}. I'm not
> seeing what I've missed. Fresh eyes appreciated.
> 
> Regards,
> 
> Rich

I had no problem with lyx2.3.

But lyx2.4 crashes at src/insets/InsetTabular.cpp:1111.
        if (restwidth > 0)
                vcolwidth = restwidth / restcols;
Under gdb, I see
        restcols == 0
Changing to
        if ((restwidth > 0) && (restcols != 0))
                vcolwidth = restwidth / restcols;
makes lyx2.4 working again.

And again, no problems with the mwe.

        Kornel

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to