Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

To have two horizontal pages in LaTeX

Tags:

layout

latex

I need to have codes in the format A4. The codes are so long that I would like to make two pages in my document horizontal. Other pages should be vertical.

How can you make two pages horizontal in LaTeX?

like image 642
Léo Léopold Hertz 준영 Avatar asked Dec 22 '22 10:12

Léo Léopold Hertz 준영


1 Answers

Install and include this package

\usepackage{lscape}

Then when you wan't to make a horizontal (landscape) page just use landscape environment

\begin{landscape}
horizontal content here
\end{landscape}
like image 115
RaYell Avatar answered Dec 31 '22 14:12

RaYell