在 Latex 中居中行

在 Latex 中居中行
\documentclass[12pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{booktabs}
\usepackage{array}
\usepackage{tabularx}
\usepackage{adjustbox}
\renewcommand{\arraystretch}{1.2}

\begin{document}
\begin{table} [ht]
\caption{caption}
\begin{adjustbox}{max width=1\textwidth,center}
\begin{tabular}{@{} c c c @{}}
\toprule 
Method & Accuracy & Critical Value \\
\midrule
Method A where \\ method B failed & 55.00\% & 70.00\% \\
\bottomrule
\end{tabular}
\end{adjustbox}
\label{mdfmofail}
\end{table}

\end{document}

这个表格看起来不错,只是 55 和 70 与底线一致。

理想情况下,我希望它们更集中于第一个条目(方法 A \ 其中 B 失败)

在此处输入图片描述

答案1

我猜你正在寻找这样的东西:

\documentclass[12pt,a4paper]{report}
\usepackage{booktabs, tabularx}
\usepackage{adjustbox}
\renewcommand{\arraystretch}{1.2}

\begin{document}
    \begin{table} [ht]
    \centering
\caption{caption}
\begin{tabular}{@{} >{\raggedright}m{31mm} c c @{}}                   % <---
\toprule
Method & Accuracy & Critical Value \\
\midrule
Method A where method B failed & 55.00\% & 70.00\% \\  % <---
\bottomrule
\end{tabular}
\label{mdfmofail}
    \end{table}
\end{document}

在此处输入图片描述

笔记: c列不允许单元格中有多行文本。您应该使用包数组中的p{<width>}m{<width>}(如上面的 mwe 中所示)。如果您希望在第一列中水平居中显示文本,则可以使用>{\centering}m{3cm}

相关内容