[Tex/LaTex] One column bibliography in two column article

bibliographiesrevtex

I couldn't find the answer, so I'm asking. I'm writing a two column article, in the first column on the last page I would like to have the article text and bibliography in the second column (whole in one column). Now bibliography is added automatically in two columns at the end. I'm using revtex 4.1 and not using bibtex.

Do you have any suggestions?

Edit

Ok, I try with an example. This is what I have:

\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}

And what I would like to have according to this example to 'move' whole bibliography to the right and keep the text in the left column.

Best Answer

I had the same problem and all I did was putting bibliography command inside the \onecolumn{} command.

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