๐Ÿ‘ป OS & Tools/LaTeX

LaTeX figure ๋„ฃ๊ธฐ

๋ณต๋งŒ 2022. 7. 6. 14:26

LaTex์—์„œ figure์„ ์‚ฌ์šฉํ•˜๊ธฐ ์œ„ํ•ด์„œ๋Š” graphics package๋ฅผ ์„ ์–ธํ•ด์•ผ ํ•œ๋‹ค.

\usepackage{graphicx}

 

LaTeX์— ๋“ค์–ด๊ฐ€๋Š” figure์€ ์ผ๋ฐ˜์ ์œผ๋กœ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ๊ตฌ์„ฑ๋œ๋‹ค.

\begin{figure}[!t]
    \centerline{\includegraphics[width=\columnwidth]{figure.png}}
    \caption{This is the first figure.}
    \label{figure_1} 
\end{figure}
  • Figure์˜ ๋‚ด์šฉ์€ \begin{figure} ๊ณผ \end{figure} ์‚ฌ์ด์— ์œ„์น˜ํ•œ๋‹ค.
  • [!t]๋Š” figure์ด ๋†“์ผ ์ˆ˜ ์žˆ๋Š” ์œ„์น˜๋ฅผ ์˜๋ฏธํ•œ๋‹ค. ๋‹ค์Œ ์ค‘ ํ•˜๋‚˜ ์ด์ƒ์˜ option์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. ๋‹จ, ์ˆœ์„œ๋Œ€๋กœ ์ ์šฉ๋˜๋Š” ๊ฒƒ์€ ์•„๋‹ˆ๋‹ค. ๋Œ€๋ถ€๋ถ„์˜ ๊ฒฝ์šฐ default ๊ฐ’์€ tbp์ด๋‹ค. (์ฐธ๊ณ )
    • !:๊ธฐ์กด์˜ ์„ค์ •์„ ๋ฌด์‹œํ•˜๊ณ  figure ์œ„์น˜๋ฅผ override
    • h: ํ˜„์žฌ ์œ„์น˜(here)
    • t: page์˜ ๊ฐ€์žฅ ์œ„(top)
    • b: page์˜ ๊ฐ€์žฅ ์•„๋ž˜(bottom)
    • p: ๋ณ„๋„์˜ ์ƒˆ๋กœ์šด page
  • \centerline{}์€ figure์„ ๊ฐ€์šด๋ฐ์ •๋ ฌํ•˜๊ธฐ ์œ„ํ•จ์ด๋‹ค.
  • width๋กœ figure์˜ ํฌ๊ธฐ๋ฅผ ์กฐ์ ˆํ•  ์ˆ˜ ์žˆ๋‹ค. \columnwidth๋‚˜ \textwidth ๋“ฑ์˜ macro๋ฅผ ์‚ฌ์šฉํ•ด๋„ ๋˜๊ณ , ์ง์ ‘ mm/in ๋‹จ์œ„์˜ ์ˆ˜์น˜๋ฅผ ์ž…๋ ฅํ•  ์ˆ˜๋„ ์žˆ๋‹ค (ex: width=88mm).
  • ํ˜„์žฌ .tex ํŒŒ์ผ๊ณผ ๊ฐ™์€ ์œ„์น˜์˜ figure์„ ํŒŒ์ผ๋ช…์œผ๋กœ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์žˆ๋‹ค. ํ•˜์œ„ directory ๋‚ด์— ์žˆ๋Š” ๊ฒฝ์šฐ ๊ฒฝ๋กœ+ํŒŒ์ผ๋ช…์œผ๋กœ ๋ถˆ๋Ÿฌ์™€๋„ ๋œ๋‹ค.
  • \cation{}์€ figure์˜ caption(์„ค๋ช…)์„ ์˜๋ฏธํ•œ๋‹ค.
  • \label{}์€ figure์„ ์ฐธ์กฐํ•˜๊ธฐ ์œ„ํ•œ label ์ด๋ฆ„์ด๋‹ค. Text ๋‚ด์—์„œ \ref{figure_1}๊ณผ ๊ฐ™์ด ํ•ด๋‹น figure์„ ์ฐธ์กฐํ•  ์ˆ˜ ์žˆ๋‹ค.

 

 

๋งŒ์•ฝ two-column ํ˜•์‹์—์„œ, figure์„ ๋‘ column์— ๊ฑธ์ณ์„œ ๋„ฃ๊ณ ์ž ํ•œ๋‹ค๋ฉด figure ๋Œ€์‹  figure*์„ ์‚ฌ์šฉํ•˜๋ฉด ๋œ๋‹ค.

\begin{figure*}[!t]
    \centerline{\includegraphics[width=\textwidth]{figure.png}}
    \caption{This is the first figure.}
    \label{figure_1} 
\end{figure*}
๋ฐ˜์‘ํ˜•