Research/논문 작성법
[LaTeX] 테이블 내 폰트 크기 조절하기
bskyvision.com
2019. 3. 21. 15:07
표를 그렸는데 표가 너무 커서 다른 열을 침범했다. 아니면 너무 작아 잘 보이지 않는다.
이런 경우에는 아래 명령어들(\tiny, \scriptsize, \footnotesize 등) 중에서 적절히 하나를 선택해서 \begin{tabular}와 \end{tabular} 앞 뒤에 넣어주면 된다. small 사이즈를 선택했다면 아래와 같이 넣어주면 된다.
\begin{table}
{\small
\begin{tabular}
....
\end{tabular}
}
\end{table}
아래로 갈 수록 폰트 사이즈가 커진다.
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
<참고자료>
[1] https://acehyunwoo.tistory.com/entry/LaTeX%EC%97%90%EC%84%9C-%EA%B8%80%EA%BC%B4-%ED%81%AC%EA%B8%B0-%EB%B3%80%EA%B2%BD, 테이블 사이즈 조절하기
[2] http://www.tablesgenerator.com/, LaTeX용 표 만들어 주는 웹사이트