消除参考书目中上标数字和文本之间的差距

消除参考书目中上标数字和文本之间的差距

我想消除参考文本(如下例中的“第一参考”、“第二参考”)和参考上标编号(如下例中的 1 和 2)之间的间隙。请提出修改建议。

\documentclass{article}
\usepackage[super]{natbib}
\renewcommand{\bibsection}{}
\renewcommand{\bibnumfmt}[1]{$^{#1}$}
\begin{document}
 Citing here \cite{AB} in the text.
    \begin{thebibliography}{100}
        \bibitem{AB}
        First reference.
        \bibitem{CD}
        Second reference.
    \end{thebibliography}
\end{document}

代码的输出是:

代码输出时参考编号与文本之间存在间隙问题。

答案1

在序言中输入以下内容:

\let\oldbibliography\thebibliography
\renewcommand{\thebibliography}[1]{%
  \oldbibliography{#1}%
  \setlength{\labelsep}{0pt}%
}

结果:

在此处输入图片描述

相关内容