TeX 表格中的多行单元格
我正在尝试制作一个与 第一个表非常相似的表 克雷莫纳关于椭圆曲线的书,但有时我想要跨越多行的单元格。我并不反对使用 LaTeX 包,但我无法弄清楚如何使用可变宽度的列,该列尊重中心列周围的垂直条。
(来自 Wikibooks 的这段代码使居中的列看起来是右对齐的
\begin{tabular*}{0.75\textwidth}{@{\extracolsep{\fill}} | c | c | c | r | }
\hline
label 1 & label 2 & label 3 & label 4 \\
\hline
item 1 & item 2 & item 3 & item 4 \\
\hline
\end{tabular*}
)
任何帮助都是非常感谢。
I'm trying to make a table that is very similar to the first table of Cremona's book on Elliptic Curves, however occasionally I want to have cells that span multiple row. I am not opposed to using LaTeX packages, but I have not been able to figure out how to use variable width columns which respect vertical bars around centered columns.
(This code from Wikibooks makes the centered columns appear to be right aligned
\begin{tabular*}{0.75\textwidth}{@{\extracolsep{\fill}} | c | c | c | r | }
\hline
label 1 & label 2 & label 3 & label 4 \\
\hline
item 1 & item 2 & item 3 & item 4 \\
\hline
\end{tabular*}
)
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用 tabular 环境而不是 tabular*,上面的示例将具有所有居中的列。
我给出以下示例是为了显示居中的多列和居中的多行(使用包 multirow):
所有要居中的列和行都居中。
Simply use the tabular environment instead of tabular*, and your example above will have all centered cols.
I give the following example in order to show both centered multicols and centered multirows (using package multirow):
All columns and rows meant to be centered are centered.