프로그래밍

LATEX 유용한 코드 모음

hydragon 2022. 1. 31. 11:06
반응형

논문용 LATEX를 사용할때 유용한 코드들을 모아봤다.

 

1. 그림 삽입

\begin{figure}
	\setlength{\belowcaptionskip}{-24pt}
	\begin{center}
		\includegraphics[width=\linewidth]{이미지 경로}
		\caption{캡션}
		\label{label 이름}
	\end{center}
\end{figure}

 

2. 수식 삽입

\begin{equation}
	수식 입력
\end{equation}

 

3. 글자 색 변경

\usepackage{color}

\textcolor{red}{red colored text}
반응형