我在用着
%\documentclass[twocolumn,showpacs,preprintnumbers,amsmath,amssymb]{revtex4}
\documentclass[preprint,showpacs,preprintnumbers,amsmath,amssymb]{revtex4}
\usepackage{amsmath}
\newcommand\numberthis{\addtocounter{equation}{1}\tag{\theequation}}
%\documentclass[preprint,aps]{revtex4}
%\documentclass[preprint,aps,draft]{revtex4}
%\documentclass[prb]{revtex4}% Physical Review B
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{amsmath}
我有三个附录都被标记为“A”,而不是“A”,“B”,“C”。
我尝试过(在咨询了堆栈交换之后)使用"\begin{appendices}...\end{appendices}"
,并且只使用
"\begin{appendix}...\end{appendix}"
一次而不是三次。
它们仍然被标记为“附录 A”。
答案1
使用命令\appendix
代替\begin{appendix}...\end{appendix}
。然后在命令后跟上附录的文本。所有后续\section
命令都将用大写字母而不是数字标记。
我在 MWE 中加入了几个部分和一个目录,这样您就可以看到主文档和附录的编号样式变化。希望这就是您想要的!
(注意:记得附上完整的平均能量损失当您发布问题时。
\documentclass[preprint,showpacs,preprintnumbers,amsmath,amssymb]{revtex4}
\usepackage{amsmath}
\newcommand\numberthis{\addtocounter{equation}{1}\tag{\theequation}}
\usepackage{graphicx}
\usepackage{dcolumn}
\usepackage{bm}
\usepackage{amsmath}
\begin{document}
\tableofcontents
\section{Section One}
Text for section one.
\subsection{Subsection One}
Text for subsection one.
\appendix
\section{First Appendix}
Text for appendix one.
\subsection{First Appendix Subsection}
\section{Second Appendix}
Text for appendix two.
\end{document}