Como posso corrigir a coluna 4 para que fique alinhada da mesma forma que as outras colunas? Observe que se as colunas consistissem apenas de numerais (linha 2), a coluna 4 seriaaindaestar desalinhado.
\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}
Responder1
Há uma linha em branco após a última célula 4444
. Também criei um newcolumntype M
definido para \newcolumntype{M}{>{\centering\arraybackslash}m{.2\textwidth}}
simplificar o cabeçalho.
\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}