λ
Όλ¬Έ μμ± κ³Όμ μμ λ€μν ννμ Figure μ Table μ μμ±νκ² λ©λλ€.
LaTeX μ μ΄μ©ν΄μ λ
Όλ¬Έμ μμ±νλ©΄ νΈλ¦¬ν μ μ΄ λ§μ§λ§,
λ¨μνκ² drag & drop μ μ΄μ©νμ¬ Figure λ₯Ό μ½μ
νμ§ μκΈ° λλ¬Έμ
λ§€λ² μνλ Figure μ ννλ₯Ό μκ°νκ³ , μ΄μ λ§μΆ° μ½λλ₯Ό μμ±ν΄μΌ ν©λλ€.
λ€μν μν Figure Type λ€μ μ λ¦¬ν΄ λλ©΄, ν΄λΉ μν©μ κ°μ₯ μ ν©ν ννλ₯Ό μκ°νκΈ°λ μ½κ³
μ½λλ₯Ό κ·Έλλ‘ κ°μ Έλ€ μ°λ©΄ νΈλ¦¬νκΈ° λλ¬Έμ μκ°μ λ΄μ΄ λͺ κ°μ§ λνμ μΈ ννλ₯Ό μ 리ν©λλ€.
\begin{figure}[t]
\centering
\includegraphics[width=0.45\textwidth]{figures/figure-a.pdf}
\caption{This is figure A}
\label{fig:fig-a}
\end{figure}
\begin{figure}[t]
\centering
\subfloat[Figure A]{%
\includegraphics[width=0.25\textwidth]{figures/figure-a.pdf}%
\label{fig:fig-a}%
}
\subfloat[Figure B]{%
\includegraphics[width=0.25\textwidth]{figures/figure-b.pdf}%
\label{fig:fig-b}%
}
\caption{These are figure A and B}
\label{fig:fig-ab-horizontal}
\end{figure}
\begin{figure}[t]
\centering
\subfloat[Figure A]{
\includegraphics[width=0.45\textwidth]{figures/figure-a.pdf}
\label{fig:fig-a}
} \\
\subfloat[Figure B]{
\includegraphics[width=0.45\textwidth]{figures/figure-b.pdf}
\label{fig:fig-b}
}
\caption{Figure A and B with vertical placement}
\label{fig:fig-ab-vertical}
\end{figure}
\begin{figure*}[t]
\centering
\subfloat[Figure A]{
\includegraphics[width=0.33\textwidth]{figures/figure-a.pdf}
\label{fig:fig-a}
}
\subfloat[Figure B]{
\includegraphics[width=0.33\textwidth]{figures/figure-b.pdf}
\label{fig:fig-b}
}
\subfloat[Figure C]{
\includegraphics[width=0.33\textwidth]{figures/figure-c.pdf}
\label{fig:fig-c}
}
\caption{Figure A, B and C}
\label{fig:fig-abc}
\end{figure*}
\begin{figure*}[t]
\centering
\subfloat[Figure A]{
\includegraphics[width=0.23\textwidth]{figures/figure-a.pdf}
\label{fig:fig-a}
}
\subfloat[Figure B]{
\includegraphics[width=0.23\textwidth]{figures/figure-b.pdf}
\label{fig:fig-b}
}
\subfloat[Figure C]{
\includegraphics[width=0.23\textwidth]{figures/figure-c.pdf}
\label{fig:fig-c}
}
\subfloat[Figure D]{
\includegraphics[width=0.23\textwidth]{figures/figure-d.pdf}
\label{fig:fig-d}
}
\caption{Four figures with two wide column}
\label{fig:fig-abcd}
\end{figure*}
arraystretch: νμ λμ΄λ₯Ό μ‘°μ ν μ μλ κΈ°λ₯
0.45\textwidth: single-column λλΉμ 0.45λ°° λλΉλ₯Ό κ°μ§
tabularx: c λ ν
μ€νΈμ λ§λ column λλΉλ₯Ό κ°μ‘λ€λ©΄, X λ λλΉλ₯Ό μ΅λνμΌλ‘ λΆν
makecell: cell λ΄λΆμμ μ€λ°κΏ κ°λ₯, cell λ΄λΆμμ ν
μ€νΈ μ€μ μ λ ¬
\begin{table}
\def\arraystretch{1.3}
\centering
\begin{tabularx}{0.45\textwidth}{|c||X|X|}
\hline
& \makecell{A} & \makecell{B} \\ \hline
row1 & \makecell{a1} & \makecell{b1} \\
row2 & \makecell{a2} & \makecell{b3} \\
row3 & \makecell{a3} & \makecell{b4} \\ \hline
\end{tabularx}
\caption{Basic Table}
\label{table:basic-table}
\end{table}