logo

Writing Korean in LaTeX 📂Writing

Writing Korean in LaTeX

Description

Using the kotex package allows for the use of Korean.

With kotex

3243_kotex_1.png

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{kotex}

\title{TeX에서 한글 쓰는 방법}
\author{전기현}
\date{2022년 06월 01일}

\begin{document}

\maketitle
TeX에서 한글을 쓰려면 kotex 패키지를 사용하면 된다.
\end{document}

Without kotex

3243_kotex_2.png

\documentclass{article}
\usepackage[utf8]{inputenc}
% \usepackage{kotex}

\title{TeX에서 한글 쓰는 방법}
\author{전기현}
\date{2022년 06월 01일}

\begin{document}

\maketitle
TeX에서 한글을 쓰려면 kotex 패키지를 사용하면 된다.
\end{document}