参考部分和引文标注格式,revtex4 文档类

参考部分和引文标注格式,revtex4 文档类

撰写我的第一篇 revtex 文章时,使用了一个示例模板开始,但我想要的参考文献部分的格式让我困惑。我有:

\documentclass[twocolumn,prb]{revtex4}   % prb is Physics Review B
\usepackage{amsmath}    % need for subequations
\usepackage{graphicx}   % need for figures
\usepackage{amssymb}
\usepackage[pdftex]{hyperref}

最后我有:

\section{Conclusion}

 There are articles that would be missed if only one or two databases/sources were searched

\appendix   
\section*{References}
\begin{thebibliography}{31}
\bibitem{1}
D Baye and P-H Heenen,
J. Phys. A:Math. Gen., \textbf{19} , 2041-2059 (1986).

\end{thebibliography}

\end{document}

从评论来看,我怀疑我没有得到参考文献部分的正确命令,并且可能会修复下面的问题。(“prb”是物理评论 B)请建议我进行一些基本的更改以获得更好的参考书目?我继承了我目前所拥有的。

1) 如何让“参考文献”标题在新行开始,位于 revtext 放置的中心行之后。更新:我添加了更多材料,文章扩展到新页面 - 参考文献标题现在位于正确的位置。

2)如何使双字节编号格式化为方括号中的正常字符格式?(我发现的 prb 标准说它们应该放在方括号中。)

答案1

1) 如何使“参考”标题在中心线之后的新行上开始?

您不需要。正如您所注意到的,revtex4style 会在参考书目前面立即插入一条短水平线,并且不提供单独的标题(例如“参考文献”)。如果您需要使用revtex4文档类,请不要修改这个非常基本且独特的文档布局功能。

2) 如何使 bibitem 编号格式化为方括号中的正常字符格式?(我发现的 prb 标准说它们应该放在方括号中)

文档revtex4类会自动加载natbib包。因此,插入指令

\setcitestyle{numbers,square}

在序言中会给你用方括号括起来的非上标数字。

话虽如此,你应该认真考虑是否真的必须改变引用标注样式。在revtex4类的用户指南第 110 页,第 28.4.2 节“prb”下,可以找到:

PRB 要求上标引用。

因此,如果你prb\documentclass指令提供了选项,你几乎肯定会不是将引用标注样式更改为括号中的普通数字。

在此处输入图片描述

\documentclass[twocolumn,prb]{revtex4}   % prb is Physics Review B
\usepackage{amsmath}    % need for subequations
\usepackage{graphicx}   % need for figures
\usepackage{amssymb}
\usepackage{hyperref}   % no need to provide 'pdftex' option

\setcitestyle{numbers,square} % do reconsider whether this is necessary or advisable

\begin{document}

\section{Conclusion}

There are articles that would be missed if only one or two databases\slash sources were searched.\cite{1}

%%\appendix   
%%\section*{References}

\begin{thebibliography}{1}

\bibitem{1}
D Baye and P-H Heenen,
J.\ Phys. A:Math.\ Gen., \textbf{19}, 2041--2059 (1986).

\end{thebibliography}

\end{document}

相关内容