为什么我的参考文献在页面底部?

为什么我的参考文献在页面底部?

这是我的主要 tex 文件的样子:

\documentclass[reprint]{revtex4-1}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math


\begin{document}
...
\cite{abst}
...    
\section{\label{sec:level1}References}

\bibliography{bibtex.bib}
\bibliographystyle{plain}

\end{document}

我的参考文献如下:

在此处输入图片描述

我希望参考文献的样式与文本的其余部分相同(没有上方的线条,与文本的其余部分分开)。有人能帮我吗?

答案1

你可以。但是你提交论文的期刊的文字编辑不会高兴。

\begin{filecontents*}{\jobname.bib}
@article{a,
  author={A. Uthor},
  title={Title A},
  journal={Journal A},
  year=2018,
}
@article{b,
  author={A. Buthor},
  title={Title B},
  journal={Journal B},
  year=2018,
}
@article{c,
  author={A. Cuthor},
  title={Title C},
  journal={Journal C},
  year=2018,
}
@article{d,
  author={A. Duthor},
  title={Title D},
  journal={Journal D},
  year=2018,
}
\end{filecontents*}

\documentclass[reprint,aps]{revtex4-1}

\usepackage{lipsum}

\renewcommand{\bibsection}{%
  \par\mbox{}%
  \section{\label{sec:level1}References}%
}
\begin{document}

\title{Title}
\author{A. Uthor}

\maketitle

\section{Introduction}

\lipsum[1-4]

Citations \cite{a,b,c,d} and a footnote\footnote{Footnote!}

\bibliographystyle{apsrmp4-1}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

相关内容