Revtex 4-1 中单独页面上的参考书目

Revtex 4-1 中单独页面上的参考书目

如何强制 Revtex 4-1 中的参考书目出现在新页面上?

默认情况下,它会立即出现在正文之后。

“新页面”、“分页符”、“vspace{}”及其组合不起作用。

我能找到的最接近的信息是在这个尚未回答的 stackexchange 问题中: RevTex4-1 中的引用末尾没有参考书目(或者至少在单独的页面上有参考书目)?

编辑:

针对请求 MWE 的评论:

\documentclass{revtex4-1}
\begin{document}
\cite{test,test,test}
\newpage{}\pagebreak{}\newpage{}
\bibliographystyle{apsrev4-1}
\bibliography{C:/Users/library}
\end{document}

这是可行的(参考书目从第二页开始)。但是:

\documentclass[twocolumn]{revtex4-1}

参考书目从正文之后的第一页开始。

答案1

由于注释中的块代码不太好:

请测试以下示例并报告结果

\documentclass{revtex4-1}
\begin{document}
\cite{companion}
\clearpage
\bibliographystyle{apsrev4-1}
\bibliography{biblatex-examples}
\end{document}

顺便说一句:期刊决定其出版期刊中文章的整体外观。他们只会恢复更改。

答案2

使用\clearpage(而不是\newpage\pagebreak\vspace)。

相关内容