LaTEX:中文支持:修订间差异

来自WHY42
imported>Soleverlee
无编辑摘要
imported>Soleverlee
第18行: 第18行:
</source>
</source>
=XeCJK中文支持=
=XeCJK中文支持=
[[Category:Programe]]

2017年1月13日 (五) 07:42的版本

CTEX中文支持

只需要把开头的\documentclass{atricle}换成\documentclass{ctexart}就可以了。

\documentclass{ctexart}
\begin{document}
你好,我是Riguz!
\end{document}

注意可以保存为UTF-8(不带BOM头),WinEdt没找到在哪设置编码,我用Notepad++处理。另一种复杂一点的办法是使用CJK包,如下:

\documentclass{article}
\usepackage{CJK}
\begin{document}
\begin{CJK*}{GBK}{song}
我是汉子!Haha!
\end{CJK*}
\end{document}

XeCJK中文支持