TeX 表格中的多行单元格

发布于 2024-11-27 04:59:17 字数 607 浏览 2 评论 0原文

我正在尝试制作一个与 第一个表非常相似的表 克雷莫纳关于椭圆曲线的书,但有时我想要跨越多行的单元格。我并不反对使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终弃我 2024-12-04 04:59:17

只需使用 tabular 环境而不是 tabular*,上面的示例将具有所有居中的列。

我给出以下示例是为了显示居中的多列和居中的多行(使用包 multirow):

\begin{tabular}{ | c | c | c | r | }
\hline
label 1 & label 2 & label 3 & label 4 \\
\hline
\multicolumn{2}{|c|}{\textbf{Name of the SLA parameter $\pi$}} &
\multicolumn{2}{|c|}{\textbf{Name of the SLA parameter $\pi$}} \\
\hline
\multirow{2}{*}{item 1} & item 2 & item 3 & item 4\\
  & item 2  & item 3  & item 4  \\
\hline
item 1  & item 2  & item 3  & item 4  \\
\hline
\end{tabular}

所有要居中的列和行都居中。

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):

\begin{tabular}{ | c | c | c | r | }
\hline
label 1 & label 2 & label 3 & label 4 \\
\hline
\multicolumn{2}{|c|}{\textbf{Name of the SLA parameter $\pi$}} &
\multicolumn{2}{|c|}{\textbf{Name of the SLA parameter $\pi$}} \\
\hline
\multirow{2}{*}{item 1} & item 2 & item 3 & item 4\\
  & item 2  & item 3  & item 4  \\
\hline
item 1  & item 2  & item 3  & item 4  \\
\hline
\end{tabular}

All columns and rows meant to be centered are centered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文