I'm just trying to get LaTeX output spaces between Korean words. At the moment all it can do is to give long chains of syllables just like in Chinese or in Japanese, ignoring all the spaces I set.
Here is the code:
\documentclass[12pt]{scrartcl}
\usepackage[boldfont,slantfont]{xeCJK}
\usepackage{xunicode,xltxtra}
\usepackage{gb4e}
\setCJKmainfont{Batang} % for \rmfamily
\begin{document}
좋은 아침입니다! 안녕하세요, 저의 이름은 김 입니다.%"Good Morning! My Name is Kim." in Korean
\end{document}
The text output is just like: 좋은아침입니다! 안녕하세요, 저의이름은김입니다. So, spaces will only be processed after punctuation marks.
I know I'm doing something wrong, but I can't tell what exactly.
xeCJKis updated to providespaceoption and\CJKspace. Check out the code at http://code.google.com/p/ctex-kit/source/checkout . The package will be uploaded to CTAN some time later. – Leo Liu May 21 '11 at 03:04