多语言展示
当前在线:1069今日阅读:152今日分享:13

IEEE Latex模板和文档设置(\\documentclass)

IEEE Latex模板和文档设置(\documentclass)
工具/原料
1

Latex WinEdit

2

博客园

方法/步骤
1

1、可以在博客园中使用latex代码输出公式,以后再以不用复制图片粘贴啦: http://www.cnblogs.com/cmt/p/3279312.html例如以下代码两边加上 $ 符号后 x(k + 1)=\Phi(k) x(k)+\Gamma(k) w(k),可产生 $\LaTeX$ 公式(仅在博客园发博文时有效,欢迎大家来注册)$  x(k + 1)=\Phi(k) x(k)+\Gamma(k) w(k)  $

2

IEEE模板(IEEE官网上有下载):http://www.ieee.org/publications_standards/publications/authors/author_templates.html

3

或者也可以去Latex官方资源站下载:http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/IEEE页面上的文件下载下来是个压缩包,里面有个PDF文件详述了模板的使用方法:

4

下面来介绍一下模板的具体用法(实际是翻译总结了一下《How to Use the LEEEtran $\LaTeX$ Class》)。首先看导言部分的文件格式的命令,做黄色标记的是默认(default)选项\documentclass[10pt,journal,final,twocolumn,]{IEEEtran}

5

(1)  \documentclass[10pt,journal,final]{IEEEtran}draft : 草稿模式,双倍行距,四面页边距均为1英寸,不显示图片,但是留空。draftcls : 草稿模式,跟draft一样,不过可以显示图片draftclsnofoot : 跟draftcls 一样,不过在脚注里不显示“DRAFT”字样,或者说,没有脚注final:最终模式,默认选项(2) \documentclass[10pt,journal,draft]{IEEEtran}peerreview : 审稿模式,单栏,title, author names and abstract 被自动隐藏(审稿需要),可用 \IEEEpeerreviewmaketitle 命令(需写在\maketitle后面 )生成单独的封面(一般写在abstract之前)peerreviewca: 标题下会显示作者名字,其他跟peerreview一样journal 和 technote : 格式与正常发表的论文一样,双栏,摘要、作者什么的都有conference : 会议格式(3) onecolumn,twocolumn : 单栏,双栏,双栏为默认,单栏一般用于草稿(4) onside, twoside : 设置单双面打印,默认为单面。原文如下:These options control whether the layout follows that of single sided or two sided (duplex) printing. Because the side margins are normally centered, the main notable difference is in the format of the running headings.(5) romanappendices : 把附录默认的编号方式由A,B,C 改为 罗马数字 ,IEEE真是心细,这个都要设一个参数。(6) compsoc, transmag : IEEE Computer Society and TRANSACTIONS ON MAGNETICS 专用格式,不往这俩地方投就不用选了(7) letterpaper, a4paper : 页面类型,默认为美国通用的 US letter (8.5in 11in), 也是IEEE通用的,也可以改为A4 (210mm 297mm)。(8) 几种不常用的命令:CLASSINPUT : \documentclass 命令之前使用,可以自定义文章格式,一般用不到。CLASSOPTION:Users should treat the CLASSOPTIONs as being “read-only” and not attempt to manually alter their values because IEEEtran uses them internally as flags to determine which options have been selected—changing these flags will likely result in improper formatting.CLASSINFO :As with CLASSOPTIONs, users should not attempt to alter the CLASSINFOs.

推荐信息