vote up 1 vote down star

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?

flag

Thank you for your answers! – Masi Jul 29 at 19:14
LaTeX is a programming language. LaTeX questions are on topic on StackOverflow. – dmckee Jul 31 at 2:00

2 Answers

vote up 3 vote down check

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}
link|flag
1  
I am deleting my same solution below. One small caveat. If you are using pdflatex, make sure you use the pdflscape package. More info: ctan.org/pkg/lscape – SplittingField Jul 29 at 18:50
@SplittingField: Thank you for pointing that out! - I had already an issue with lscpape. – Masi Jul 29 at 19:10
pdflscape may be better if you are creating pdfs, but latex doesn't always produce pdfs so saying which one is better depends of what you are trying to do. Anyway, both packages gives you the same landscape that works rather well. – RaYell Jul 29 at 19:24
1  
Agreed. In general, I have found latex to be used as a more general term which includes latex, pdflatex, xelatex, etc. ;-) – SplittingField Jul 29 at 19:44
vote up 1 vote down

For completeness, it should be noted that the lscape package only works with Latex. If you use pdfLatex, you should use the pdflscape style.

For more information see this CTAN Link.

link|flag
Do you know how you can have the pagenumbers also horizontally? – Masi Jul 29 at 19:13
Are you sure you want to do that? it is generally against the "Standard Rules" for theses, etc. And the answer is no, not off the top of my head.. ;-) – SplittingField Jul 29 at 19:45
I did not know that. Thank you for pointing it out! – Masi Jul 31 at 13:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.