表格錯位

表格錯位

如何修復第 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}

在此輸入影像描述

相關內容