答案1
表格是使用以下方式创建的:tabularx
(为了方便列宽)。代码重复创建了...重复表:
\documentclass{article}
\usepackage[margin=1in]{geometry}
\usepackage{tabularx,array}
\pagestyle{empty}% No page header/footer
\setlength{\parindent}{0pt}% No paragraph indentation
\renewcommand{\arraystretch}{2}
\begin{document}
\begin{tabularx}{.75\textwidth}[t]{ | X | X | X | }
\multicolumn{3}{c}{Title} \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline
\end{tabularx}%
\begin{tabular}[t]{@{}>{\centering\arraybackslash}p{.25\textwidth}@{}}
\\% Skip the title row
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean mollis at quam et varius. Sed mollis lacus eu diam tincidunt varius.
Cras dapibus, risus sit amet condimentum posuere, erat tellus laoreet nulla.
\end{tabular}
\bigskip
Some bottom text.
% ============================
\vfill
\begin{tabularx}{.75\textwidth}[t]{ | X | X | X | }
\multicolumn{3}{c}{Title} \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline & & \\
\hline
\end{tabularx}%
\begin{tabular}[t]{@{}>{\centering\arraybackslash}p{.25\textwidth}@{}}
\\% Skip the title row
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean mollis at quam et varius. Sed mollis lacus eu diam tincidunt varius.
Cras dapibus, risus sit amet condimentum posuere, erat tellus laoreet nulla.
\end{tabular}
\bigskip
Some bottom text.
\end{document}