如何在表格中使用 m{width} 进行左对齐:
梅威瑟:
\documentclass{cta-author}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{array}
\usepackage{booktabs}
\usepackage{multirow}
\newtheorem{theorem}{Theorem}{}
\newtheorem{corollary}{Corollary}{}
\newtheorem{remark}{Remark}{}
\begin{document}
\begin{table}[!t]
\setlength\extrarowheight{2pt}
\processtable{A Comparative Description of Different Algorithms\label{table3}}
{\begin{tabular}{m{2.24cm}<{\centering}m{2.74cm}<{\centering}m{1.74cm}
<{\centering}m{1.74cm}<{\centering}m{4.74cm}<{\centering}m{2.74cm}<{\centering}}
\toprule
\textbf{1}&\textbf{2}&\textbf{3}&\textbf{4}&\textbf{5}&\textbf{6} \\
\midrule
\textbf{A} & B & C & D& E & A \\
\midrule
\textbf{A} & B & C & D& E & A \\
\midrule
\textbf{A} & B & C & D& E & A \\
\bottomrule
\end{tabular}}{}
\end{table}
\end{document}
答案1
<{\centering}
是一种非常奇怪的指定居中方式,并且仅在某些情况下有效。>{\centering\arraybackslash}m{2.24cm}
会更可靠。要获得左对齐而不是居中,请使用>{\raggedright\arraybackslash}m{2.24cm}
获得不规则的右侧(左对齐)而不是居中。