如何使用IEEE_cs_Latex写论文, 并加入中文

时间:2022-06-01 18:05:31

1. 下载ctex套装 

2. 安装ctex套装,然后打开里面的Winedit 即可开始写论文

3. 下载IEEE_cs_Latex模板 

地址为:http://www.ieee.org/publications_standards/publications/authors/author_templates.html   在里面选择windows版本的

下载后是一个IEEETran的文件夹。里面有一个readme 说明了文件清单:

README                 - This file.

IEEEtran.cls - The IEEEtran LaTeX class file.

changelog.txt - The revision history.

IEEEtran_HOWTO.pdf - The IEEEtran LaTeX class user manual.

bare_conf.tex - A bare bones starter file for conference papers.

bare_jrnl.tex - A bare bones starter file for journal papers.

bare_jrnl_compsoc.tex - A bare bones starter file for Computer Society
journal papers.

bare_jrnl_transmag.tex - A bare bones starter file for IEEE Transactions
on Magnetics journal papers.

bare_adv.tex - A bare bones starter file showing advanced
techniques such as conditional compilation,
hyperlinks, PDF thumbnails, etc. The illustrated
format is for a Computer Society journal paper.


我们需要的是自然科学,  bare_jrnl_compsoc.tex 这个 ,其余的tex结尾的是另外的模板。

双击这个tex,就会打开在winedit里面。 最好先另存为:UTF-8 版本

然后“垃圾桶”和"B"这个之间的按钮,选择xeLatex 然后再点击他一次,就会自动编译。 然后在同级目录查看生成的PDF文档,就是这个IEEE_cs_Latex的效果。

也可以找那个“放大镜”的按钮,直接打开。

4. 就是中文的问题。之前那个ctex套装最好下载FULL版本,避免不必要的下载麻烦

在刚才那个winedit页面查找 begin{document} 在他上面加入usepackage{xecjk} setCJKmainfont等。 如下

\usepackage{xeCJK}
\setCJKmainfont{SimSun}
\begin{document}

具体其他效果 请百度 xeCJK

5. 还有更简单的中文配置,那就是直接把\documentclass{article}改成\documentclass{ctexart}

但是在这里本来就是用的IEEE的模板\documentclass{IEEEStran}
所以只能用4的方法