-
LATEX 유용한 코드 모음프로그래밍 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}
반응형'프로그래밍' 카테고리의 다른 글
리눅스 SSH 방화벽 포트 설정 방법 (0) 2022.02.03 Pyinstaller 사용시 selenium의 chromedriver 콘솔창 제거하는 방법 (0) 2022.01.28 chmod로 파일 및 폴더 권한 바꾸기 (0) 2021.11.23 윈도우 + Visual Studio Code로 쉽게 C/C++ 개발환경 세팅하기 (0) 2021.07.22 리눅스 scp 명령어로 서버간 파일 옮기기 (0) 2021.07.17