页面内容的垂直定位

页面内容的垂直定位

我有一个文档,我将根据一些输入来生成它,该输入基本上是每个页面的 tabularx:

\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}

其中\commandOne...\commandFour生成表的行和列。

问题是我希望每个\hlines 都放在每一页上完全相同的位置(我知道每个 s\commandN占用不到半页)。

例如,有没有一种方法可以对位置\hline和后面的文本进行硬编码?

相关内容