[LaTex] Overleaf 에서 Latex 로 문서 편집하기
Overleaf
Overleaf, Online LaTeX Editor
An online LaTeX editor that's easy to use. No installation, real-time collaboration, version control, hundreds of LaTeX templates, and more.
www.overleaf.com
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] 기호 모음
[LaTex] 기호 모음
1. 그리스 문자 α \alpha β \beta γ \gamma δ \delta ϵ \epsilon ζ \zeta η \eta θ \theta ι \iota κ \kappa λ \lambda μ \mu ν \nu ξ \xi o o (omic..
eehoeskrap.tistory.com
How do I get Korean (Hangul) characters to typeset in LaTeX ?
I've been unable to find a concise answer anywhere else on the web. Since its only a few words, albeit crucial ones, that are in Korean I don't want to have to muck around with HLaTex or deviate from
tex.stackexchange.com
참고자료 2 : https://ko.overleaf.com/learn/latex/Using_colours_in_LaTeX
Using colours in LaTeX - Overleaf, 온라인 LaTex 편집기
사용하기 쉬운 온라인 LaTex 편집기. 설치 필요없음. 실시간 협업. 버전 관리. 수백 개의 LaTex 템플릿. 그리고 그 이상.
ko.overleaf.com
참고자료 3 : https://dh8607.tistory.com/163
[LaTeX] 글자에 색깔 넣기
논문 revision시, 수정된 문장을 표시할 때, 글자에 색깔을 넣어 표시하는 것이 매우 편하다. 먼저, 글자색 지정을 위해서는 color 패키지가 필요하다. \usepackage{color} 다음, 원하는 문장을 아래와 같
dh8607.tistory.com