Latex 在参考文献中留下缩进(\bibliography)

Latex 在参考文献中留下缩进(\bibliography)

我有同样的问题Latex 在参考文献中留下空白,但我正在使用该\bibliography{}命令。

有没有什么办法可以消除这个凹痕?

在此处输入图片描述

\documentclass[urlsf]{usmthesis}
\begin{document}
\bibliographystyle{ieeetr}

\begin{singlespace}
\bibliography{mybib}
\end{singlespace}

\addtocontents{toc}{\protect\setlength{\protect\cftbeforechapskip}{1pc}}
\end{document}

在 - 的里面usmthesis.cls

\RequirePackage[numbers]{natbib}
%\RequirePackage{apacite}
%\RequirePackage{natbib}
\addto\captionsenglish{%
\renewcommand{\bibname}{References}
}
\setlength\bibsep{1em}
\setlength\bibhang{1.5em}
\renewcommand\bibfont{\singlespace}

我所说的缩进是从我的乳胶中得到的:

在此处输入图片描述

在我的usmthesis.bbl文件中,我已经设置

begin{thebibliography}{100}

但无济于事。

答案1

的原作者usmthesis.cls很好心地回复了我的电子邮件并给我提供了一个解决方案。

添加

\renewcommand{\bibnumfmt}[1]{\makebox[1.75em][l]{[#1]}} 

在序言处将强制编号标签占据正好的1.75em宽度,无论编号是多少。如果有超过 100 个参考文献,则可以增加该长度值。

相关内容