物理レビューレターのスタイル

物理レビューレターのスタイル

Physical Review レター (つまり、1 つの論文に 2 つの列) ジャーナルで使用されるような LaTeX テンプレートを持っている人はいますか?

答え1

というパッケージがありrevtex4-1、これはすべてのエイピーエスそしてその間にもオーストラリアIPジャーナル。物理レビューレタースタイルについては、次の 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: このスタイルは、エイピーエス(アメリカ物理学会)家族
  • prl: ジャーナルは物理レビューレター(短縮PRL
  • reprint: ジャーナルに印刷されるとおりにドキュメントを印刷します。別のオプションとして、preprintドキュメントを 1 列に設定し、校正のために行間隔を大きくすることもできます。

関連情報