我想要制作一个横跨整个页面的两列表格,其布局如下:
===================================
Column 1 text Column 2 text
===================================
Column 1 text Column 2 text
that wraps.
===================================
等号是水平线。有关我要求的(更好的)示例,请参阅此小阴谋家样本章节。我怎样才能创建类似的东西?
答案1
这应该可以让你得到你想要的大部分东西:
\begin{tabular*}{\textwidth}{ l l }
\hline
The quick brown fox jumped over the lazy dog & Another example of text \\
\hline
The quick brown fox jumped over the lazy dog & Another example of text \\
\end{tabular*}
一些解释:
- 该
tabular*
环境允许您设置许多简单tabular
环境所没有的布局选项,例如宽度。 - 的第一个参数
tabular*
,\textwidth
告诉 LaTeX 使用整个页面的宽度。 - 第二个参数
l l
与 类似tabular
。 - 该
\hline
命令插入一条水平线。