
Physical Review Letter(예: 한 논문에 두 개의 열) 저널에서 사용하는 것과 같은 라텍스 템플릿을 가지고 있는 사람이 있습니까?
답변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
: 저널은실제 검토 편지(단축PRL)reprint
: 저널에 인쇄되는 것처럼 문서를 인쇄합니다. 또 다른 옵션은preprint
문서를 단일 열로 설정하고 교정 목적으로 더 큰 줄을 펼치는 것입니다.