someone rcommend the xelatex, but others insist on the latex+CJK, which one is prefer? thanks.

link|improve this question
Please try on tex.stackexchange.com. – Patrick Feb 4 at 17:40
feedback

closed as off topic by Michael Petrotta, BoltClock Feb 4 at 7:10

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

I use LaTeX + CJK and it works fine. Make sure your text editor supports unicode, and then add these lines between the \documentclass and \begin{document} lines:

\usepackage{CJKutf8}
\newcommand{\zh}[1]{\begin{CJK}{UTF8}{gbsn}#1\end{CJK}}

Now you can insert whatever Chinese characters you like into the document by typing \zh{中文}

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.