如何在乳胶表中合并一行中的单元格?

发布于 2024-07-11 13:30:43 字数 47 浏览 5 评论 0原文

在表中,我想合并一些列,但不是所有行。 我怎样才能用 LaTeX 实现这一点?

In a table I want to combine some of the columns, but not in all rows. How can I realize this with LaTeX?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夜未央樱花落 2024-07-18 13:30:43

\multicolumn{}{}{}

其中参数是要

  1. 合并对齐方式和格式化字符串的列数
  2. (就像在表标题中使用的那样) ,即“|c|”等)
  3. 要放入合并列中的内容

此命令仅替换 列并内联使用。


添加:这也是您仅更改表格一行中单个字段格式的方法。 只需使用\multicolumn{1}{<新格式>}{<内容>}

\multicolumn{<number>}{<formatting>}{<contents>}

Where the arguments are

  1. Number of columns to merge
  2. the justification and formating string (just like you use in the table header, i.e. "|c|" or the like)
  3. The contents to put in the merged columns

This command simply replaces the <number> columns and is used inline.


Addition: This is also how you change the formatting of a single field in only one row of the table. Just use \multicolumn{1}{<new format>}{<contents>}.

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