乳膠中的行居中

乳膠中的行居中
\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>}or (如上面的 mwe 所示)。m{<width>}如果您希望第一列中的文字水平居中,那麼您可以使用>{\centering}m{3cm}.

相關內容