如何修复第 4 列,使其与其他列对齐?请注意,如果列仅由数字组成(第 2 行),则第 4 列将仍然未对准。
\documentclass[twoside,12pt]{memoir}
\newcommand{\instruction}[1]{\begin{scriptsize} \textsf{#1} \end{scriptsize}}
\begin{document}
\begin{tabular}{>{\centering\arraybackslash}m{.2\textwidth} | >{\centering\arraybackslash}m{.2\textwidth} | >{\centering\arraybackslash}m{.2\textwidth} | >{\centering\arraybackslash}m{.2\textwidth}}
one & two & three & four \\
1111 & 2222 & 3333 & 4444
\end{tabular}
\end{document}
答案1
最后一个单元格后有一个空白行4444
。我还定义了一个新的列类型M
,以\newcolumntype{M}{>{\centering\arraybackslash}m{.2\textwidth}}
简化标题。
\documentclass[twoside,12pt]{memoir}
\newcommand{\instruction}[1]{\begin{scriptsize} \textsf{#1} \end{scriptsize}}
\begin{document}
\newcolumntype{M}{>{\centering\arraybackslash}m{.2\textwidth}}
\begin{tabular}{M *3{|M}}
one & two & three & four \\
1111 & 2222 & 3333 & 4444
\end{tabular}
\end{document}