Writing Korean in LaTeX
Description
Using the kotex
package allows for the use of Korean.
With kotex
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{kotex}
\title{TeX에서 한글 쓰는 방법}
\author{전기현}
\date{2022년 06월 01일}
\begin{document}
\maketitle
TeX에서 한글을 쓰려면 kotex 패키지를 사용하면 된다.
\end{document}
Without kotex
\documentclass{article}
\usepackage[utf8]{inputenc}
% \usepackage{kotex}
\title{TeX에서 한글 쓰는 방법}
\author{전기현}
\date{2022년 06월 01일}
\begin{document}
\maketitle
TeX에서 한글을 쓰려면 kotex 패키지를 사용하면 된다.
\end{document}