如何简单地垂直和水平对齐表格内容

如何简单地垂直和水平对齐表格内容

我的表格需要垂直和水平对齐其内容。

以下是代码:

\documentclass[twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{booktabs, array}
\usepackage{lipsum}
\begin{document}
\begin{table*}
    \centering
      \begin{tabular}{>{\centering\arraybackslash}m{1cm}>{\centering\arraybackslash}m{1cm}}
        \toprule 1 & 2 \\ \midrule 3 & 4 \\ \bottomrule
      \end{tabular}
    \caption{table 1}
\end{table*}

\lipsum[1-15] % filler text
\end{document}

在此处输入图片描述

据我所知,m内容应该垂直对齐,这些>{\centering\arraybackslash}部分应该水平对齐。但是,如果你测量数字上方的空间和数字下方的空间,你会发现数字下方有更多的空间。

简单的任务是:

  • 水平和垂直对齐单元格内容,以及
  • 使列宽自动缩放(及其内容)。

我在这里发现了很多类似的问题,但没有一个真正解决基本层面的问题。

答案1

经典的工具是包:默认情况下,cellspace您使用字母作为列说明符的前缀(或者,如果您加载,或者使用加载选项,使用任何您想要的字母):SCsiunitx[columntype=some letter]

\documentclass[twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{booktabs, array}
\usepackage{lipsum}
\usepackage{cellspace}
\setlength{\cellspacetoplimit}{4pt}
\setlength{\cellspacebottomlimit}{4pt}

\begin{document}
\begin{table*}
    \centering
      \begin{tabular}{>{\centering\arraybackslash}S{m{1cm}}>{\centering\arraybackslash}S{m{1cm}}}
        \toprule 1 & 2 \\ \midrule 3 & 4 \\ \bottomrule
      \end{tabular}
    \caption{table 1}
\end{table*}

\lipsum[1-15] % filler text

\end{document} 

在此处输入图片描述

答案2

如果你很着急

快速回答

\documentclass[twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{tabularray}     % <<----- added
\UseTblrLibrary{booktabs}   % <<----- added
\usepackage{booktabs, array}
\usepackage{lipsum}
\begin{document}

\begin{table*}
    \centering
    \begin{tblr}{colspec={Q[c,m]Q[c,m]},rows={rowsep=4pt},stretch=0}
        \toprule
         11 & 2 \\
        \midrule
         3 & 4444444 \\
        \bottomrule
    \end{tblr}
    \caption{tblr with numbers}
\end{table*}

\lipsum[1-15] % filler text
\end{document}

长答案

注1:我使用了不同的包:tabularray
笔记2:我建议你读一下Mico 的回答在我之前。

关于“水平和垂直对齐单元格内容”:

tabularray包有一个很好的方法来集中一切。但据我所知,它认为该行有一个全高(和上升者下行者)进行对齐。(米科谈论得更好)

您可以从以下从包文档中摘取的两个示例中看到这一点:

带有文字

\documentclass[twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{tabularray}     % <<----- added
\UseTblrLibrary{booktabs}   % <<----- added
\usepackage{booktabs, array}
\usepackage{lipsum}
\begin{document}

\begin{table*}
    \centering
    \begin{tblr}{lccr}
        \hline
         Alpha & Beta & Gamma & Delta \\
        \hline
         Epsilon & Zeta & Eta & Theta \\
        \hline
         Iota & Kappa & Lambda & Mu \\
        \hline
    \end{tblr}
    \caption{tblr with text}
\end{table*}

\begin{table*}
    \centering
    \begin{tabular}{lccr}
        \hline
         Alpha & Beta & Gamma & Delta \\
        \hline
         Epsilon & Zeta & Eta & Theta \\
        \hline
         Iota & Kappa & Lambda & Mu \\
        \hline
    \end{tabular}
    \caption{tabular with text}
\end{table*}

\lipsum[1-15] % filler text
\end{document}

然而,当你只使用数字时(如米科说,数字有上升者但不是下行者)你会得到这个,其tblr效果甚至比以下更糟糕tabular

用数字

\begin{table*}
    \centering
    \begin{tblr}{Q[c,m,1cm]Q[c,m,1cm]}
        \toprule
         1 & 2 \\
        \midrule
         3 & 4 \\
        \bottomrule
    \end{tblr}
    \caption{tblr with numbers}
\end{table*}

\begin{table*}
    \centering
      \begin{tabular}{>{\centering\arraybackslash}m{1cm}>{\centering\arraybackslash}m{1cm}}
        \toprule 1 & 2 \\ \midrule 3 & 4 \\ \bottomrule
      \end{tabular}
    \caption{tabular with numbers}
\end{table*}

选项 1(这个更好)

谢谢LJR 的建议我们可以使用stretch=0。我还用它rowsep=4pt来让桌子看起来不那么拥挤。

带数字 - LJR 建议

\begin{table*}
    \centering
    \begin{tblr}{colspec={Q[c,m,1cm]Q[c,m,1cm]},stretch=0}
        \toprule
         1 & 2 \\
        \midrule
         3 & 4 \\
        \bottomrule
    \end{tblr}
    \caption{tblr without rowsep=4pt}
\end{table*}

\begin{table*}
    \centering
    \begin{tblr}{colspec={Q[c,m,1cm]Q[c,m,1cm]},stretch=0,rows={rowsep=4pt}}
        \toprule
         1 & 2 \\
        \midrule
         3 & 4 \\
        \bottomrule
    \end{tblr}
    \caption{tblr with rowsep=4pt}
\end{table*}

选项 2(旧解决方案)

您可以通过在文本上方添加空间来轻松手动修复此问题,abovesep+如下所示:

带数字 - 旧解决方案

\begin{table*}
    \centering
    \begin{tblr}{colspec={Q[c,m,1cm]Q[c,m,1cm]},rows={abovesep+=2pt}}
        \toprule
         1 & 2 \\
        \midrule
         3 & 4 \\
        \bottomrule
    \end{tblr}
    \caption{tblr with numbers}
\end{table*}

\begin{table*}
    \centering
      \begin{tabular}{>{\centering\arraybackslash}m{1cm}>{\centering\arraybackslash}m{1cm}}
        \toprule 1 & 2 \\ \midrule 3 & 4 \\ \bottomrule
      \end{tabular}
    \caption{tabular with numbers}
\end{table*}

关于“使列宽自动缩放(及其内容)”:

不设置列的宽度Q可以解决这个问题,不是吗?

带数字 - 列宽

\documentclass[twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{tabularray}     % <<----- added
\UseTblrLibrary{booktabs}   % <<----- added
\usepackage{booktabs, array}
\usepackage{lipsum}
\begin{document}

\begin{table*}
    \centering
    \begin{tblr}{colspec={Q[c,m]|Q[c,m]},stretch=0,rows={rowsep=4pt}}
        \toprule
         1 & 2 \\
        \midrule
         3 & 4 \\
        \bottomrule
    \end{tblr}
    \caption{tblr with numbers}
\end{table*}

\begin{table*}
    \centering
    \begin{tblr}{colspec={Q[c,m]|Q[c,m]},stretch=0,rows={rowsep=4pt}}
        \toprule
         11 & 2 \\
        \midrule
         3 & 4444 \\
        \bottomrule
    \end{tblr}
    \caption{tblr with numbers}
\end{table*}

\lipsum[1-15] % filler text
\end{document}

混合数字和字母时出现的问题

当您混合使用字母和数字时,问题会再次出现(见下表 1)。需要注意的是,对齐是按照同一行中的每个字符具有相同的总高度作为一个由它们全部组成的框。因此 a3和 ap将像 一样对齐3p,从而导致视觉错位。

问题

请注意,3没有深度并且p更少高度3这是关于这个话题的一个很好的讨论高度深度

方面

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{tabularray}     % <<----- added
\UseTblrLibrary{booktabs}   % <<----- added
\usepackage{xcolor}         % <<----- added
\usepackage{booktabs,array}

\newlength\height
\newlength\depth
\newlength\totalheight

\newcommand{\RULE}[1]{%
    \settoheight{\height}{#1}%
    \settodepth{\depth}{#1}%
    \setlength\totalheight{\dimexpr\height+\depth\relax}%
    \rule[-\depth]{0.1pt}{\totalheight}#1\rule[-\depth]{0.1pt}{\totalheight}%
}

\newcommand{\STH}[1]{%
    \settoheight{\height}{#1}%
    \settodepth{\depth}{#1}%
    \setlength\totalheight{\dimexpr\height+\depth\relax}%
    height of \textcolor{red}{#1}: \textcolor{blue!70!gray}{\the\height}\par
    depth of \textcolor{red}{#1}: \textcolor{blue!70!gray}{\the\depth}\par
    total height of \textcolor{red}{#1}: \textcolor{blue!70!gray}{\the\totalheight}\par
    \vspace{8pt}
}

\begin{document}

\STH{3}
\STH{p}
\STH{3p}

\begin{table*}[t]
    \centering
    \begin{tblr}{colspec={Q[c,m]Q[c,m]},stretch=0}
        \toprule
         1 & 2 \\
        \midrule 
         AAAA & 6 \\
        \midrule 
         g & pppp \\
        \midrule
         33 & pppp \\
        \midrule
         \RULE{3} & \RULE{p} \\
        \midrule 
         \RULE{\vphantom{3p}3} &  \RULE{\vphantom{3p}p}\\
        \midrule 
         \RULE{3p} &  \RULE{3p}\\
        \bottomrule
    \end{tblr}
    \caption{tblr with numbers and letters}
\end{table*}

\end{document}

答案3

我想质疑您关于m列类型没有垂直居中其内容的说法。

您的主张似乎部分基于对测试表中单元格内容的非常具体的选择:您选择的字符只有上升部(高于 x 线的线),但没有下降部(低于基线的线)。一旦您放宽这个极端选择,您会发现上升部顶端\midrule和上升部顶端之间的垂直空白is very close to the amount of vertical whitespace between the bottoms of the descenders and the lower\midrule`。

您还写道:

如果您测量数字上方的空间和数字下方的空间,您会发现数字下方有更多的空间。

再次强调,只有当你只使用具有上升部分的字符时,这才是真的,并且没有下降部分。当然,如果您使用既没有上升部也没有下降部的字符 —— acemnorsuvwxz —— 您的发现就必须被逆转。

简而言之:学会信任 LaTeX 以获得正确的垂直对齐。:-)

在此处输入图片描述

\documentclass[twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage{booktabs, array}
\begin{document}
\begin{table}
    \centering
      \begin{tabular}{*{2}{>{\centering\arraybackslash}m{3cm}}}
        \midrule 
        pqyhbkpqy & acemnorsuvwxz \\ 
        \midrule 
        acemnorsuvwxz & pqyhbkpqy \\ 
        \midrule
      \end{tabular}
\end{table}
\end{document}

相关内容