[Tex/LaTex] How to get Korean (Hangul) characters to typeset in LaTeX

cjkfontslanguagespdftex

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 pdfLaTeX that I'm using at the moment.

Best Answer

Personally, I had a lot of trouble trying to get the CJK package to work. So I went on the KTUG website and found that they use the package kotex.

\documentclass{article}
\usepackage{kotex}
\begin{document}
안녕하세요!
\end{document}

Output

The good part about this was I was able to simply copy and paste hangul from websites into the LaTeX document and it worked fine. I only wanted a few words (my name) as well, so this option might be quicker and easier.

Related Question