Latex之IEEE

用Latex寫學術論文: IEEE Latex模板和文檔設置(\documentclass)

1、可以在博客園中使用latex代碼輸出公式,以後再以不用複製圖片粘貼啦: http://www.cnblogs.com/cmt/p/3279312.html

例如以下代碼兩邊加上 $ 符號後 x(k + 1)=\Phi(k) x(k)+\Gamma(k) w(k),可產生 LATEXLATEX 公式

x(k+1)=Φ(k)x(k)+Γ(k)w(k)x(k+1)=Φ(k)x(k)+Γ(k)w(k)

2、IEEE模板:http://www.ieee.org/publications_standards/publications/authors/author_templates.html 

IEEE_templates

或者也可以去Latex官方資源站下載:http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/

IEEE頁面上的文件下載下來是個壓縮包,裏面有個PDF文件詳述了模板的使用方法:

image

 

下面來介紹一下模板的具體用法(實際是翻譯總結了一下《How to Use the LEEEtran LATEXLATEX Class》)。首先看導言部分的文件格式的命令,做黃色標記的是默認(default)選項

\documentclass[10pt,journal,final,twocolumn,]{IEEEtran}

(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.


記錄一下

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章