4

The latex example below states my question.

\documentclass[12pt,letterpaper]{article}
\usepackage{kotex}
\begin{document}
I would like to display the consonants ㅇ and ㄹ along with the vowel ㅣ of the letter 일.
\end{document}
Paul Gessler
  • 29,607
Alex
  • 887

1 Answers1

4

I know nothing about Korean, and the kotex package is documented only in that language, but looking at the style file and the example documents in the documentation, it seems that it supports XeLaTeX, (with the hangul option). This means you can just type the characters directly into your source document:

% compile with XeLaTeX or LuaLaTeX
\usepackage[hangul]{kotex}
\setmainhangulfont{NanumMyeongjo}
\begin{document}
I would like to display the consonants ㅇ and ㄹ along with the vowel ㅣ of the letter 일.
\end{document}

output of code

Alan Munn
  • 218,180