包含 15 个文本框的页面

包含 15 个文本框的页面

我不知道这是否正确:我需要一页(垂直 A3),其中包含 5 条垂直线,每行由 3 列组成。我需要在这个框中插入文本。我该如何获得它?

谢谢

雷纳托

附言:这是第一页的示例在此处输入图片描述

答案1

我认为以下内容可以帮助您入门。 tabularx创建一个\linewidth宽度为(页面宽度)的表格。*{3}{X}创建 3 个类型的X列,tabularx使大小相等以达到所需的宽度。在表格单元格中,您可以输入标题和摘要(使用\newline,因为\\开始新的表格行)。然后使用移动到下一个单元格,&使用移动到下一行\\

\documentclass{article}
\usepackage[a3paper]{geometry}
\usepackage{tabularx}
\newcommand\shortBox{This is a short box}
\newcommand\longBox{This is a longer box that will take some more space.  I'll add some more words to make sure that happens.  I think this is enough. Well, lets add a bit more. This is a longer box that will take some more space.  I'll add some more words to make sure that happens.  I think this is enough. Well, lets add a bit more.}
\begin{document}
\centering
{\Huge This is my title}
\renewcommand{\arraystretch}{2} % increase the spacing between the rows
\begin{tabularx}{\linewidth}{ *{3}{X} }
Title 1\newline\shortBox &
Title 2\newline\longBox &
Title 3\newline\shortBox \\
Title 5\newline\longBox &
Title 4\newline\shortBox &
Title 6\newline\shortBox \\
Title 7\newline\shortBox &
Title 8\newline\longBox &
Title 9\newline\shortBox \\
Title 10\newline\shortBox &
Title 11\newline\longBox &
Title 12\newline\longBox \\
Title 13\newline\shortBox &
Title 14\newline\longBox &
Title 15\newline\shortBox
\end{tabularx}
\end{document}

代码输出

相关内容