감동, 마음이 움직이는 것
[LaTex] table length 조절하기 본문
Tips (Utility, Computer Language, and etc.)
[LaTex] table length 조절하기
Struggler J. 2019. 5. 18. 20:22https://tex.stackexchange.com/questions/157389/how-to-center-column-values-in-a-table
begin{tabular}{m{argument}...}, argument를 조절해서 길이를 조정할 수 있다.
아래는 예시코드
\begin{table}[]
\centering
\begin{tabular}{m{4cm} m{4cm} m{4cm} }\hline
& A & B \\ \hline\hline
a & X & X \\ \hline
b & X & O \\ \hline
c & O & X \\ \hline
d & O & O \\ \hline
\end{tabular}
\end{table}
혹시 글자를 중간정렬하고 싶다면
\newcolumntype{M}[1]{>{\centering\arraybackslash}m{#1}}
를 새로 정의하여 m대신 M을 사용하면 된다.
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] sympy 사용기 (0) | 2019.06.20 |
---|---|
[python] np.array에서 원하는 row range출력하기 (0) | 2019.05.22 |
[Linux] vi편집기에서 줄바꿈 (0) | 2019.05.09 |
[python] PCA and figure (0) | 2019.04.30 |
[gnuplot] How to do horizontal lines from a one column file using gnuplot? (0) | 2019.01.28 |