双栏文章中的单栏参考书目

双栏文章中的单栏参考书目

我找不到答案,所以我问了。我正在写一篇两栏文章,在最后一页的第一栏中,我想将文章正文和参考书目放在第​​二栏中(全部放在一栏中)。现在,参考书目会自动添加到最后的两栏中。我正在使用revtex 4.1并且不使用 bibtex。

你有什么建议吗?

编辑

好的,我尝试举一个例子。这是我所拥有的:

\documentclass[aps,reprint,twocolumn,groupedaddress,amsmath,amssymb]{revtex4-1}
\usepackage{lipsum}

\begin{document}
\title{Just an example}
\maketitle

\section{Introduction}
\lipsum[2-4]

\begin{thebibliography}{99}

\bibitem{1} J.~Bond, S.~Connery.
\textit{Goldfinger.}
Eon Productions, {\bf 106}, 106 (1964).

\bibitem{2} J.~Bond, S.~Connery.
\textit{Goldfinger.}
Eon Productions, {\bf 106}, 106 (1964).

\bibitem{3} J.~Bond, S.~Connery.
\textit{Goldfinger.}
Eon Productions, {\bf 106}, 106 (1964).

\bibitem{4} J.~Bond, S.~Connery.
\textit{Goldfinger.}
Eon Productions, {\bf 106}, 106 (1964).

\bibitem{5} J.~Bond, S.~Connery.
\textit{Goldfinger.}
Eon Productions, {\bf 106}, 106 (1964).

\bibitem{6} J.~Bond, S.~Connery.
\textit{Goldfinger.}
Eon Productions, {\bf 106}, 106 (1964).

\end{thebibliography}
\end{document}

根据这个例子,我想要将整个参考书目“移动”到右边,并将文本保留在左栏。

答案1

我遇到了同样的问题,我所做的就是将参考书目命令放入 \onecolumn{}命令中。

\onecolumn{
    \bibliographystyle{apalike}
    \bibliography{physics.bib}}

相关内容