2020-06-25 08:45:35

다양한 형태의 표 템플릿(template)을 제공하려고 합니다. 각자의 필요에 맞게 수정해서 사용하시길 바랍니다. 혹시 원하는 형태의 표가 있는데 만들지 못해서 어려움을 겪고 계신 분이 있다면, 제 이메일(kyohoonsim@gmail.com)로 원하는 형태를 그림으로 그려서 보내주시면 한 번 만들어보도록 하겠습니다. 이메일 보내셨다면 여기 댓글로 보내셨다고 남겨주세요. 참고로 저도 못 만들 수도 있습니다. 다만 최대한 노력해보겠습니다. 

 

템플릿1

LaTeX 코드

\begin{table}
\centering
\caption{Table template 1}
\label{t1}
\begin{tabular}{|c|c|c|c|}
\noalign{\smallskip}\noalign{\smallskip}\hline
& column1 & column2 & column3 \\
\hline
row1 & - & - & - \\
\hline
row2 & - & - & - \\
\hline
row3  & - & - & - \\
\hline
\end{tabular}
\end{table}

 

 

템플릿2

LaTeX 코드

\begin{table}
\centering
\caption{Table template 2}
\label{t2}
\begin{tabular}{c|ccc}
\noalign{\smallskip}\noalign{\smallskip}\hline\hline
& column1 & column2 & column3 \\
\hline
row1 & - & - & - \\
\hline
row2 & - & - & - \\
\hline
row3  & - & - & - \\
\hline
\hline
\end{tabular}
\end{table}

 

 

템플릿3

LaTeX 코드

\begin{table}
\centering
\caption{Table template 3}
\label{t3}
\begin{tabular}{c|ccc}
\noalign{\smallskip}\noalign{\smallskip}\hline\hline
& column1 & column2 & column3 \\
\hline
row1 & - & - & - \\
row2 & - & - & - \\
row3  & - & - & - \\
\hline
\hline
\end{tabular}
\end{table}

 

 

템플릿4

LaTeX 코드

\begin{table}
\centering
\caption{Table template 4}
\label{t4}
\begin{tabular}{c|cc|cc}
\noalign{\smallskip}\noalign{\smallskip}\hline\hline
\multirow{2}{*}{} & \multicolumn{2}{c|}{column1} & \multicolumn{2}{c}{column2} \\
\cline{2-5}
      & subcolumn1-1  & subcolumn1-2 & subcolumn2-1 & subcolumn2-2 \\
\hline
 row1 & - & - & - & - \\
 row2 & - & - & - & - \\
 row3 & - & - & - & - \\
\hline
\hline
\end{tabular}
\end{table}

 

멀티행(multirow)을 사용하기 때문에 이 코드를 실행하시려면 \usepackage{multirow}을 tex 파일 상단에 추가해주셔야 합니다. 

 

 

템플릿5

LaTeX 코드

\begin{table}
\centering
\caption{Table template 5}
\label{t5}
\begin{tabular}{cc|ccc}
\noalign{\smallskip}\noalign{\smallskip}\hline\hline
\multicolumn{2}{c|}{} & column1 & column2 & column3 \\
\hline
\multirow{3}{*}{row1} & subrow1-1 & - & - & - \\
& subrow1-2 & - & - & - \\
& subrow1-3 & - & - & - \\
\hline
\multirow{3}{*}{row2} & subrow2-1 & - & - & - \\
& subrow2-2 & - & - & - \\
& subrow2-3 & - & - & - \\
\hline
\hline
\end{tabular}
\end{table}

 

 

이 글은 계속해서 갱신해가도록 하겠습니다.