I am trying to fix two half-paged documents on one document, one on top of the other.
The method below works pretty well so far, but I'm having trouble using 0.5\textheight for the height of the second minipage. When I change 0.49 to 0.5, the second page breaks onto another page. What am I doing wrong? Is there a better way to achieve what I'm looking for?
\documentclass{article}
\usepackage[vmargin=0.4in]{geometry}
\pagestyle{empty}
\parindent = 0.0in
\begin{document}
\begin{minipage}[t][0.5\textheight][t]{\textwidth}
Page 1
\end{minipage} \\
\begin{minipage}[b][0.49\textheight][t]{\textwidth}
\vspace{0.4in}
Page 2
\end{minipage}
\end{document}
\vboxandnointerlineskipmethod works for me and the\null\kern-\topskip\nointerlineskipalternative also works if I add it before the document. Thanks! – Trey Hunner Oct 18 '10 at 15:02