ํ ์๋ ์์ฑ๊ธฐ Table generator
https://www.tablesgenerator.com/#
์๋ ์ ๋ช ํ ํ ์๋ ์์ฑ๊ธฐ ์ฌ์ดํธ. Custom grid (ํ ๋๋ฆฌ) ์ค์ ํ๊ฑฐ๋ ์ ๋ณํฉ์ ํด์ผํ ๋ ์์ค์ฝ๋๋ฅผ ์๋์ผ๋ก ์์ฑํด์ค์ ๋งค์ฐ ์ ์ฉํ๋ค.
ํ ํฐํธ ํฌ๊ธฐ ์กฐ์ Table font size
์ถ์ฒ: https://bskyvision.com/439
ํฐํธ ํฌ๊ธฐ๋ฅผ ์ค์ ํด์ฃผ๋ ๋ช ๋ น์ด๋ฅผ tabular ์๋ค๋ก ๋ฃ์ด์ฃผ๋ฉด ๋๋ค.
\begin{table}
{\small
\begin{tabular}
...
\end{tabular}
}
\end{table}
์ฌ์ฉํ ์ ์๋ ๋ช ๋ น์ด๋ ๋ค์๊ณผ ๊ฐ๋ค. (์๋๋ก ๊ฐ์๋ก ํฐ ์ฌ์ด์ฆ)
- \tiny
- \scriptsize
- \footnotesize
- \small
- \normalsize
- \large
- \Large
- \LARGE
- \huge
- \Huge
์ ๋๋น ์กฐ์
์ถ์ฒ: https://gist.github.com/LanternD/1edd0fcc64f287d841b6da3ec38c69a2
p{} ๋ช ๋ น์ด๋ฅผ ํตํด ์ ๋๋น๋ฅผ ๊ธฐ๋ณธ์ ์ผ๋ก ์ค์ ํ ์ ์์ง๋ง, ์ข์ธก์ ๋ ฌ์ผ๋๋ง ์ฌ์ฉํ ์ ์๋ค.
๊ฐ์ด๋ฐ์ ๋ ฌ์ด๋ ์ฐ์ธก์ ๋ ฌ์ ํ๊ณ ์ ๋๋น๋ฅผ ์ค์ ํ๋ ค๋ฉด {array} package๋ฅผ ์ด์ฉํด ๋ค์ ๋ช ๋ น์ด๋ฅผ ์ ์ํ์ฌ ์ฌ์ฉํ๋ฉด ๋๋ค.
\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\begin{table}
\begin{tabular}{L{2cm} | C{1cm} | R{2cm}}
\hline
a1 & a2 & a3 \\ \hline\hline
b1 & b2 & b3 \\ \hline
c1 & c2 & c3 \\ \hline
d1 & d2 & d3 \\ \hline
\end{tabular}
\end{table}
L์ ์ข์ธก์ ๋ ฌ, C๋ ๊ฐ์ด๋ฐ์ ๋ ฌ, R์ ์ฐ์ธก์ ๋ ฌ์ด๋ฉฐ {} ์์ ์ ๋๋น๋ฅผ ์ค์ ํ ์ ์๋ค.
ํ ๋ด๋ถ ์ฌ๋ฐฑ (ํ ๋์ด, ๋๋น ์กฐ์ ) Table width, height
์์: https://www.overleaf.com/project/5c349976c042023b1bd97751
ํ ์ ์ฒด ํฌ๊ธฐ๋ฅผ ์กฐ์ ํ๊ธฐ ์ํด ํ ๋ด๋ถ ์ฌ๋ฐฑ์ ์กฐ์ ํ ์ ์๋ค.
\begin{table}
\setlength{\tabcolsep}{10pt}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}
\hline
a1 & a2 & a3 \\ \hline\hline
b1 & b2 & b3 \\ \hline
c1 & c2 & c3 \\ \hline
d1 & d2 & d3 \\ \hline
\end{tabular}
\end{table}
\setlength๋ horizontal spacing (์ข์ฐ ์ฌ๋ฐฑ),
\arraystretch๋ vertical spacing (์ํ ์ฌ๋ฐฑ)์ ์กฐ์ ํ๋ค.
footnote ๋ฌ๊ธฐ
์ถ์ฒ: https://tex.stackexchange.com/questions/118743/threeparttable-notes-layout
caption์ด ์๋๋ผ, footnote๋ฅผ ๋ฌ๊ธฐ ์ํด {threeparttable} package๋ฅผ ์ด์ฉํ ์ ์๋ค.
\usepackage{threeparttable}
\begin{table}
\caption{}
\begin{threeparttable}
\begin{tabular}
\hline
a1 & a2 & a3\tnote{1} \\ \hline\hline
b1 & b2 & b3 \\ \hline
c1 & c2 & c3 \\ \hline
d1 & d2 & d3 \\ \hline
\end{tabular}
\begin{tablenotes}
\item[1] abc: ABC
\end{tablenotes}
\end{threeparttable}
\end{table}
๊ตต์ ์ ์ถ๊ฐํ๊ธฐ
๊ตต์ ๊ฐ๋ก ์ ์ ํ ์ด๋ธ ์/์๋์ ์ด์ฉํ๋ฉด ๋ ๊น๋ํ๊ฒ ๋ง๋ค ์ ์๋ค. {booktabs} package๋ฅผ ์ด์ฉํ๋ค.
\usepackage{booktabs}
\begin{table}
\caption{}
\begin{tabular}{c|c|c}
\toprule[1.5pt]
a1 & a2 & a3 \\ \hline\hline
b1 & b2 & b3 \\ \hline
c1 & c2 & c3 \\ \hline
d1 & d2 & d3 \\ \bottomrule[1.5pt]
\end{tabular}
\end{table}