oogl / prue-thesis-template

Шаблон диплома РЭУ в LaTeX. Альтернатива шаблонам ВКР бакалавра от кафедры ПИиИБ. Unofficial LaTeX Thesis template to use at Plekhanov Russian University of Economics.
MIT License
0 stars 0 forks source link

Landscape format support #3

Closed oogl closed 3 years ago

oogl commented 3 years ago

Sometimes there is a need to represent a table or an image on a page in a lanscape format. It is needed for a single / couple of pages or a section, but not for the whole document.

Possible solution: use lscape or pdflscape package. Check solutions discussed here.

What will not work: using \newgeometry{landscape} and \restoregeometry.

oogl commented 3 years ago
\usepackage{pdflscape}
...
\begin{landscape}
...
\end{landscape}

will work, as it was stated in the source above.

oogl commented 3 years ago

Pay attention to the width of the tables put into the \landscape environment. It should be calculated based on the height of the text / page, not its width.