Programming/Etc.
[LaTex] Overleaf 에서 Latex 로 문서 편집하기
꾸준희
2021. 8. 9. 14:49
728x90
반응형
Overleaf
LaTex 문법 사용법 PDF : http://mirrors.ibiblio.org/CTAN/info/lshort/korean/lshort-ko.pdf
한글로 문서를 작성할 경우 아래와 같이 kotex package 를 사용하면 된다.
\documentclass{article}
\usepackage{kotex}
\begin{document}
안녕하세요!
\end{document}
색상은 아래와 같이 지정할 수 있다.
%패키지 설정
\usepackage{color}
%글자에 색상 적용
\textcolor{red}{red colored text}
\textcolor[rgb]{0,0,1.0}{blue colored text}
\textcolor[gray]{0.5}{gray text}
기호 및 수식을 삽입하는 방법은 아래 포스팅을 참고하길 바란다.
2021.08.09 - [Programming/Etc.] - [LaTex] 기호 모음
참고자료 2 : https://ko.overleaf.com/learn/latex/Using_colours_in_LaTeX
참고자료 3 : https://dh8607.tistory.com/163
728x90
반응형