I have a question regarding the aspect ratio of my pages. I wonder if the given aspect ratio in my example is a good choice or if I should change any values to achieve a better print space. Experts, what do you think? :)
\documentclass[12pt,ngerman]{article}
\usepackage[a4paper,margin=2cm]{geometry} \usepackage{setspace}
\usepackage[T1]{fontenc} \usepackage{mathptmx}
\usepackage[scaled=.90]{helvet} \usepackage{courier}
\onehalfspacing \lipsum
\begin{document} \setlength{\headheight}{15pt}
\setlength{\topmargin}{5pt} \setlength{\headsep}{15pt} \textheight =
635pt \setlength{\skip\footins}{10mm}
\lipsum
\end{document}
geometryto set your page layout and avoid manual setting via\setlength. – Werner Jul 08 '14 at 20:52\geometry{paper=a4paper, margin=2cm, top=5pt, headsep=15pt, ...}. Note that some of these might be contradicting, as knowingpaper(and thereforepaperwidth) andmargin, you should be able to derivetextwidthand therefore do not need to specify it explicitly. – Werner Jul 08 '14 at 20:572cmon a page of sizeA4makes for a rather wide text block. Can you make the margins a bit wider (and thus the text block a bit less wide), or can you go with a two-column layout? – Mico Jul 08 '14 at 21:02I tried 2.5cm which was a good hint, if I try 3cm, LaTeX complains about problems with managing the floating objects.
– Jens Jul 08 '14 at 21:06