I've got a document I'm going to generate from some input which basically is a tabularx for each page:
\begin{tabularx}{\textwidth}{lXlll}
\hline \\[3ex]
\commandOne \\
\hline \\[3ex]
\commandTwo \\
\hline
\end{tabularx}
\clearpage
\begin{tabularx}{\textwidth}{lXlll}
\hline \\[3ex]
\commandThree \\
\hline \\[3ex]
\commandFour \\
\hline
\end{tabularx}
where \commandOne...\commandFour generates the table's rows and columns.
The problem is that I want each of the \hlines to be placed exactly at the same place on each page (I know that every \commandN takes less than half a page).
Is there for example a way I can hardcode the position of the \hline and the text following?
\hlineis to go. – Peter Grill Mar 22 '12 at 0:08