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工具