如何在乳胶中制作类似 Little Schemer 的布局?

如何在乳胶中制作类似 Little Schemer 的布局?

我想要制作一个横跨整个页面的两列表格,其布局如下:

===================================
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命令插入一条水平线。

相关内容