An exercise on modifying LaTeX page style parameters |
Typeset the sample poem so that the width of the text is 3 inches, and the text is centered horizontally on the page.
If you type
\setlength{\textwidth}{3in} \setlength{\textheight}{\textwidth}
what happens? What if you type
\setlength{\textheight}{\textwidth} \setlength{\textwidth}{3in}
in the other order?
\setlength{\textwidth}{7.5cm} \setlength{\oddsidemargin}{8.5in} \addtolength{\oddsidemargin}{-7.5cm} \addtolength{\oddsidemargin}{-0.5\oddsidemargin} \addtolength{\oddsidemargin}{-1in}
what is the result?
An exercise on modifying LaTeX page style parameters |