如何更改表格换行符后内容的垂直位置?

发布于 2024-07-29 02:54:32 字数 265 浏览 2 评论 0原文

我在使用 LaTeX 中的表格时遇到一些问题。 我的表有 4 列。 它们太宽,无法适应 \textwidth,因此我搜索换行符并找到 \tabularnewline。 现在,第一列中的内容分为 2 行,但其他 3 列中的内容现在位于单元格的底部。 我想将它放在柱子的中心,或者至少应该在天花板上。 我怎样才能做到这一点?

我尝试了 tabular、tabular* 和 tabularx。 我想写尽可能少的命令。 有没有一种方法可以像 HTML 一样轻松地做到这一点?

I have some trouble with tables in LaTeX. My table has 4 columns. The are too broad to fit the \textwidth, so I searched for a line break and found \tabularnewline. Now the content in the first column breaks into 2 lines but the content in the other 3 columns is now at the bottom of the cell. I would like to center it in the column, or at least it should be at the ceiling. How can I do that?

I tried tabular, tabular* and tabularx. I would like to write as little commands as possible. Is there maybe a way to do it similarly easily as in HTML?

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

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

发布评论

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

评论(3

入画浅相思 2024-08-05 02:54:32

\usepackage{array} 在你的序言中,

然后你可以使用 \begin{tabular}{ccm} ——“m”会给你垂直中间对齐。
另外:“t”将为您提供顶部对齐,而“b”将为您提供底部对齐。

\usepackage{array} in your preamble

then you can use \begin{tabular}{c c m} -- the 'm' will give you vertical middle alignment.
also: 't' will give you top alignment, and 'b' will give you bottom.

陪你到最终 2024-08-05 02:54:32

并不像我希望的那么容易,但 \multirow 正是我想要的。

Not as easy as I hoped it would be but \multirow does exactly what I wanted.

新人笑 2024-08-05 02:54:32

您是否尝试对一列或多列使用段落格式说明符?

这就是 p{} ,如下所示:

\begin{tabular}{|rrp{4.5cm}l|}
  ...

对于我设想的大多数用例来说,Multirow 似乎有点矫枉过正。

注意:“长度”可以根据其他值计算得出,如 0.4\textwidth,但始终是一个常量。 不知道橡胶在这种情况下会如何反应。

Did you try using the paragraph format specifier for one or more of the columns?

That is p{<length>} as in:

\begin{tabular}{|rrp{4.5cm}l|}
  ...

Multirow seems like overkill for most of the use cases I am envisioning.

NB: The "length" can be computed from other values as is 0.4\textwidth, but is always a constant. Don't know off hand how rubber reacts in this case.

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