REVTEX4撰写科研论文

简介

《REVTEX 4 作者指南》是美国物理学会(APS)提供的,用于指导如何使用 REVTEX 4 来准备向 APS 期刊提交的手稿。在 TexLive已经收录,所以安装TexLive后,直接调用模板就可以了。

模板

这个模板是我写作时采用的,列在此处大家可以直接调用。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
\documentclass[aps,pre,showpacs,preprint,superscriptaddress]{revtex4-1}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{amsmath}
\usepackage{ulem}
\usepackage{bm}
\usepackage{amssymb}
\usepackage{color}
\usepackage{epstopdf}
\usepackage{epsfig,dsfont,multirow}
\usepackage{physics}
\usepackage{tikz}
\usetikzlibrary{fadings,patterns}
\usepackage{float}
\usepackage[
pdfborder={0 0 0},
bookmarksnumbered=true,
pagebackref,
pdftex
]{hyperref}
\usepackage{orcidlink}

\begin{document}
\title{Your Article Title}
\author{YourName\,\orcidlink{0000-0000-0000-0000}}
\email[Contact author:]{YourEmail@xxx.com}
\homepage[Visit:]{https://YourHomePageSite}
\affiliation{School of Physics and Astronomy, Beijing Normal University, Beijing 100875, China}
% \thanks{miscellaneous text}
\date{\today}
\preprint{Preprint}
\keywords{electron-positron; laser}
\begin{abstract}
Your abstract
\end{abstract}

% \pacs{05.45.-a; 02.60.-x; preprint}

\maketitle

\section{Introduction}

\section{Reference}


\bibliographystyle{unsrt}
\bibliography{Reference.bib}
%
% 直接写引用信息,不推荐
%
% \appendix
%
% \begin{thebibliography}{99}\suppressfloats
%
% \bibitem{ComDyn}
% L. Carleson, T. W. Gamelin, Complex Dynamics, Springer, New York,
% NY, 1993.
%
% \bibitem{AITJF}
% S. Sutherland, An Introduction to Julia and Fatou Sets, in: C. Bandt,
% M. Barnsley, R. Devaney, K. J. Falconer, V. Kannan, V. Kumar P.B.
% (Eds.), Fractals, Wavelets, and their Applications, Springer Proceedings
% in Mathematics $\&$ Statistics, Springer International Publishing, Cham,
% pp. 37-60, 2014.
%
% \bibitem{MJFO}
% M.-F. Danca, M. Fečkan, Mandelbrot set and Julia sets of fractional order, Nonlinear Dynamics 111(10), 9555-9570 (2023).
%
% \bibitem{MSPPCRF}
% A. J. Mitchell, Existence of the Mandelbrot Set in the Parameter Planes of Certain Rational Functions, Theses and Dissertations, University of Wisconsin-Milwaukee (2016).
%
% \bibitem{GBBM}
% H. Jang, Y. So, S. M. Marotta, Generalized baby Mandelbrot sets adorned with halos in families of rational maps, Journal of Difference Equations and Applications 23(3), 503-520 (2017).
%
% \end{thebibliography}
\end{document}

重要宏包

用来插入作者的orcid, 调用和命令

1
2
\usepackage{orcidlink}
\orcidlink{0000-0000-0000-0000}

2. float

在LaTex中,\begin{figure}[htbp]是图片环境,常用选择项[htbp]是浮动格式:

  • [h] here,当前位置。将图形放置在正文文本中给出该图形环境的地方。如果本页所剩页面不够,这一参数将不起作用。
  • [t] top,顶部。将图形放置在页面的顶部。
  • [b] bottom,底部。将图形放置在页面的底部。
  • [p] page of its own,浮动页。将图形放置在一个允许有浮动对象的页面上。

一般使用[htb]这样的组合,只用[h]是没有用的。这样组合的意思就是LaTex会尽量满足排在前面的浮动格式,就是h-t-b这个顺序,让排版的效果尽量好。

[!h]只是试图放在当前位置。如果页面剩下的部分放不下,还是会跑到下一页的。一般而言,用[!h]选项通常会出现不能正确放置的问题,所以常用[ht][htbp]等, 这里加感叹号的意思是 忽略 “美学” 标准。

如果你确实需要把图片放在当前位置,不容改变,可以用 \usepackege{float} 宏包的[H]选项。不过如果这样做,出现放不下的问题时需要手工调整。使用格式如下。

1
2
3
4
5
\usepackage{float} 
% ...
\begin{figure}[H]
foo
\end{figure}

特别强调,当表格或者图片占据双栏模板的两栏时(即在\begin{table*}时),这些控制选项就失效了。其他情况请参考 技能提升之Latex控制图片位置

参考文章