显示“补充参考文献”而不是一行作为 REVTeX 书目的标题

显示“补充参考文献”而不是一行作为 REVTeX 书目的标题

REVTeX(4 和 4-1)用一条水平线将参考书目与论文的其余部分分开。我想知道如何在章节标题字体/格式中用“补充参考”替换该行。这是我的 MWE:

\documentclass[onecolumn,noshowpacs,noshowkeys,pra]{revtex4-1}
\begin{document}

\section{Blah}
Blah blah blah
\section{More blah}
Blah blah blah blah

\begin{thebibliography}{99}
\bibitem{sample1} This is a sample bibitem
\bibitem{sample2} This is another sample bibitem
\end{thebibliography}
\end{document}

它产生了这个: 在此处输入图片描述

我想用“补充参考文献”替换水平线(以使其看起来像章节标题(“I. BLAH”和“II. MORE BLAH”)。

更新

经过一番尝试,我发现将\section*命令放入环境内thebibliography是允许的!因此,以下代码:

\documentclass[onecolumn,noshowpacs,noshowkeys,pra]{revtex4-1}
\begin{document}

\section{Blah}
Blah blah blah
\section{More blah}
Blah blah blah blah

\begin{thebibliography}{99}
\section*{SUPPLEMENTARY REFERENCES}
\bibitem{sample1} This is a sample bibitem
\bibitem{sample2} This is another sample bibitem
\end{thebibliography}
\end{document}

产生这个:

在此处输入图片描述

目前这种方法还算管用。不过,我真的很想删除这一行。另外,如果能(毫不费力地)自动完成这个过程就更好了。我使用 BibTeX 自动创建 *.bbl 文件。虽然我认为我可以编写代码(比如,用 Python)在每次使用 BibTeX 编译参考书目并将包含命令的行插入\section*.bbl 文件后运行,但肯定有更简单的方法……对吧?

答案1

我做得并不完美,但它可能会有效:

\def\bibsection{}  
% This will remove the section title, so the line will be removed

\centerline{ \textbf{\large  Supplementary References } }
% Add the reference section title as: Supplementary References
% You can put it in another style you need

\bigbreak
% create some space

相关内容