如何删除 overleaf 模板末尾的水平线?

如何删除 overleaf 模板末尾的水平线?

我正在写一篇研究提案,我选择了这个模板在 overleaf 中有 2 列。现在的问题是我想在后面立即包含参考书目,\section{References}但是从任何地方都没有水平线可以避免这种情况并导致失去其全面性:

\documentclass[%
 reprint,
%superscriptaddress,
%groupedaddress,
%unsortedaddress,
%runinaddress,
%frontmatterverbose, 
%preprint,
%preprintnumbers,
%nofootinbib,
%nobibnotes,
%bibnotes,
 amsmath,amssymb,
 aps,
%pra,
%prb,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-2}

\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{hyperref}% enables hyperlinks in the PDF
\usepackage{wrapfig}
\usepackage{lipsum}

\begin{document}

\title{\small Exposé für Geschäftsidee \\ \LARGE Proposal Title}% Force line breaks with \\


\section{References}

\bibliography{bibfile}% Produces the bibliography via BibTeX.

\end{document}

我检查了这个邮政但遗憾的是这不是我的情况。到目前为止,输出如下: 图片

我想知道是否有一种优雅的方法来解决这个问题。任何帮助都将不胜感激。

答案1

来自这个老问题(我认为你的问题是重复的)LaTeX 参考文献上方出现丑陋的线条,希望能够给你答复。

\documentclass[%
 reprint,
%superscriptaddress,
%groupedaddress,
%unsortedaddress,
%runinaddress,
%frontmatterverbose, 
%preprint,
%preprintnumbers,
%nofootinbib,
%nobibnotes,
%bibnotes,
 amsmath,amssymb,
 aps,
%pra,
%prb,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-2}

\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{hyperref}% enables hyperlinks in the PDF
\usepackage{wrapfig}
\usepackage{lipsum}
\def\bibsection{\section*{\refname}}&&&&&&<---added
\begin{document}

\title{\small Exposé für Geschäftsidee \\ \LARGE Proposal Title}% Force line breaks with \\
\section{References}
\bibliography{bibfile}% Produces the bibliography via BibTeX.

\end{document}

该行不存在:

在此处输入图片描述

相关内容