표 형식의 정렬 불량

표 형식의 정렬 불량

다른 열과 동일하게 정렬되도록 열 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을 만들었습니다 .\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}

여기에 이미지 설명을 입력하세요

관련 정보