APS期刊投稿準備: REVTex格式
阿新 • • 發佈:2018-02-02
正版 point mathtype -m app ted home tle script
APS是American Physics Society的簡稱。旗下比較有影響力的期刊有: "pra, prb, prc, prd, pre, prl, prstab, prstper, or rmp". 在旗下期刊的投稿中需遵循一套APS自己的風格。具體的要求詳見這個網站:https://journals.aps.org/prl/authors . 這裏並不會把網站的英文說明翻譯一遍,大家看原文的要求可能能準確些。這裏主要總結一下自己在準備APS投稿論文中遇到的一些問題。
- Latex or Word
APS接受的論文格式有Word和Latex格式。其中Word格式就不多講了,只要使用微軟正版的Office套裝,相信問題都不大,但註意不能使用Word自帶的數學公式編輯器,必須使用MathType插件輸入公式才可以。接下來的內容會重點介紹APS對Latex投稿的格式要求。 - REVTex
REVTex是APS自己定義的一個latex文檔規格,一般最新的Texlive發行版都是默認內置的。所以平時如果習慣用Texlive碼字,基本上不用自己再重新安裝配置REVTex環境。只要將Documentclass[]更換成REVTex對應環境即可。一個最小的文檔例子如下:
%\documentclass[aps,prl,reprint,superscriptaddress,showpacs]{revtex4-1}
\documentclass[%
reprint, %preprint, twocolumn% 其中reprint提供雙欄最接近出版論文的格式,preprint顯示的字體和行距則相對大一些,是方便審稿人將論文打印出來仔細閱讀的,twocolumn選項與此類似。
superscriptaddress, %groupedaddress,% 現在通用是前一種作者名錄格式,這樣在顯示多個作者或者一個作者從屬於多個機構時比較緊湊方便。
showpacs,% 顯示PACS代碼
amsmath, amssymb, %都是用於顯示數學公式環境
aps, %這個是指APS風格,另一個可選項應該是AIP
prl,%pra, prb, rmp, % 這裏是對不同期刊的選擇
]{revtex4-1}% 這個格式就是APS對應的latex文檔格式
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{hyperref}% add hypertext capabilities
\hypersetup{colorlinks=true, citecolor=blue, urlcolor=blue, linkcolor=blue}
\bibliographystyle{apsrev4-1.bst}% 註意這個.bst風格文件是需要從官網單獨下載的,可以控制文章末尾參考文獻的現實風格。下載之後放到工作目錄下即可(即.tex文檔所在的目錄)
\begin{document}
\title{Manuscript Title}% Force line breaks with \\
%\thanks{A footnote to the article title}%
\author{First Author}% You, the writer of this paper. 第一作者
\altaffiliation{Physics Department, XYZ University.}
\author{Second Author}% Boss with communication email 通訊作者,註意這裏的Email一定要放在通訊作者後的第一個位置,這樣郵箱地址的鏈接才會正確顯示。
\email{[email protected]}
\affiliation{Authors‘ institution and/or address}
\author{Third Author} % 一個作者有多個單位
\homepage{http://www.Second.institution.edu/~Charlie.Author}
\affiliation{Second institution and/or address}%
\affiliation{Third institution, the second for Charlie Author}
\date{\today}%This date can be changed.
\bagin{abstract}% 摘要
An article usually includes an abstract, a concise summary of the work
covered at length in the main body of the article...
\end{abstract}
\pacs{Valid PACS appear here}% PACS, the Physics and Astronomy
%\keywords{Suggested keywords}% Not always required.
\maketitle
...
Main body of this paper...
...
\bibliography{References.bib}% Produces the bibliography via BibTeX. 這個包含引用文獻的.bib文件是需要自己根據所引用的文章用文獻管理工具或者自己手工生成的。
\end{document}
- 字數限制:
APS中Review性質的期刊一般只刊載本領域最新的進展,所以都是評論快報的形式,比較短小。一般的文章都控制在4頁紙的長度左右,不會像有些期刊一樣,一篇文章動輒幾十上百頁的規模。以prl為例,其正文的字數限制是3750,評論的限制是800左右。 - 相關的小技巧
REVTex的安裝包 revtex4-1.zip可以從官網https://journals.aps.org/revtex下載到,但已經裝好Texlive卻不需要再重復安裝。但是其中有些文件卻有很大的幫助。例如:
/Downloads/revtex4-1/revtex4-1-tds/doc/latex/revtex/sample/aps/
apssamp.tex% 這個是REVTex的一個現成的完整的例子,裏面有公式,圖表等各種使用的範例。
apstemplate.tex% 這個是個空白的文檔,沒有什麽內容,可以復制出來直接添加修改成自己的文章。其中很多地方都有註釋後的提示,也很有幫助。
/Downloads/revtex4-1/revtex4-1-tds/bibtex/bst/revtex
這個目錄下面則有各種現成的.bst文件,可以直接復制出來放到工作目錄中調用。
aipauth4-1.bst aipnum4-1.bst apsrev4-1.bst apsrmp4-1.bst
其中apsrev4-1.bst就是prl對應的引文格式。
APS期刊投稿準備: REVTex格式