物理評論字母樣式

物理評論字母樣式

有沒有人有像他們在物理評論信件(即一篇論文中的兩欄)期刊中使用的那樣的乳膠模板?

答案1

有一個名為 的包revtex4-1,它是為所有APS同時也為AIP期刊。與它一起使用物理評論快報風格,考慮以下 MWE:

\documentclass[aps,prl,reprint]{revtex4-1}
\usepackage{blindtext}

\begin{document}
\title{Some random title}
\author{Me}
\email{[email protected]}
\author{Myself}
\author{Someone Else}
\affiliation{A University}

\begin{abstract}
Here I tell what I have done... And I have done a lot but it is hard to tell what exactly I have done...
\end{abstract}

\maketitle

\blindtext \cite{article-minimal}

\bibliographystyle{apsrev4-1} % Tell bibtex which bibliography style to use
\bibliography{xampl} % Tell bibtex which .bib file to use (this one is some example file in TexLive's file tree)

\end{document}

在此輸入影像描述

重要的部分是程式碼的第一行,其中的選項documentclass指定以下內容:

  • aps: 風格指的是期刊APS(美國物理學會)家庭
  • prl: 該期刊應為物理評論快報(縮短催乳素
  • reprint:按照在日誌中列印的方式列印文件。另一種選擇是preprint將文件設為單欄並使用較大的行距進行校對。

相關內容