APS是American Physics Society的簡稱。旗下比較有影響力的期刊有: "pra, prb, prc, prd, pre, prl, prstab, prstper, or rmp". 在旗下期刊的投稿中需遵循一套APS本身的風格。具體的要求詳見這個網站:https://journals.aps.org/prl/authors . 這裏並不會把網站的英文說明翻譯一遍,你們看原文的要求可能能準確些。這裏主要總結一下本身在準備APS投稿論文中遇到的一些問題。app
%\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{Second.Author@institution.edu} \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}
@article{Granetz_2014_POP, author = {Granetz, R. S. and Esposito, B. and Kim, J. H. and others}, journal = {Phys. Plasmas}, year = {2014}, volume = {21}, pages = {072506}, title = {An ITPA joint experiment to study runaway electron generation and suppression}, doi = {10.1063/1.4886802}, }
須要注意的是對REVTex的引文格式,在做者列表中"and others"是個關鍵詞,使用它能夠生成.et al,也就是更多做者的縮略[1]。通常能夠在.bib文件中手工改一改,把超過3個做者的名字都刪掉,替換成and others,這樣文章末尾的文獻列表就會短不少,不那麼佔地方了,以下圖所示。
electron
\begin{thebibliography}{39}% ... ... \end{thebibliography}%
因此只要把這個文件裏的代碼複製後粘貼到.tex的文檔末尾,就能夠將原來調用.bib引文文件和.bst引文格式文件的代碼行註釋掉。以後只須要.tex文件和.eps圖片就能夠以較快的速度編譯生成.pdf論文文檔了。編輯器
參考:
[1]https://tex.stackexchange.com/questions/123600/latex-doesnt-recognize-et-al-in-the-bibliography
[2]https://tex.stackexchange.com/questions/57743/how-to-write-%C3%A4-and-other-umlauts-and-accented-letters-in-bibliography工具