Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

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.

share|improve this question

migrated from superuser.com May 2 '11 at 3:09

1 Answer

You can use the CJK package. A little example (taken from CJKutf8.tex):

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{CJKutf8}
\usepackage[english]{babel}

\newenvironment{Korean}{%
  \CJKfamily{mj}}{}

\begin{document}

\begin{CJK}{UTF8}{}

\begin{Korean}
  이 FAQ 은 자주 반복되는 질문과 그에 대한 대답을 간단명료한 양식으로
  모아 엮어졌습니다.
\end{Korean}

\end{CJK}

This FAQ list was made to summarize some frequently asked questions
and their answers in a convenient form.

\end{document}

share|improve this answer
there are so many different articles around about getting korean to work easily in latex, this worked extremely well and very easily – grizzilus Mar 9 '12 at 0:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.