someone rcommend the xelatex, but others insist on the latex+CJK, which one is prefer? thanks.
Asked
Active
Viewed 2,977 times
1 Answers
2
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{中文}

sbrother
- 303
- 2
- 9
-
-
1It's the standard two letter language code for Chinese: https://www.loc.gov/standards/iso639-2/php/langcodes_name.php?iso_639_1=zh – sbrother Jun 13 '18 at 01:09