LaTEX:中文支持:修订间差异
imported>Soleverlee |
imported>Riguz 无编辑摘要 |
||
第17行: | 第17行: | ||
\end{document} | \end{document} | ||
</source> | </source> | ||
= | =XeLatex中文支持= | ||
使用XeLatex对中文支持友好,仅仅需要将引擎设置为xelatex,然后将tex源文件用utf-8格式保存即可。 | |||
[[Category:Programe]] | [[Category:Programe]] |
2018年1月16日 (二) 07:31的版本
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}
XeLatex中文支持
使用XeLatex对中文支持友好,仅仅需要将引擎设置为xelatex,然后将tex源文件用utf-8格式保存即可。