参考书目中的上标与 bibtex 距离文本太近

参考书目中的上标与 bibtex 距离文本太近

我读过这个话题我按照建议做了,将参考资料放在上标中,但我对效果并不十分满意,因为当我输入时,Nicholson and Shain\cite{Nicholson64}.上标数字出现在点之后,而不是之前。如何强制将其置于点之前?

我的最小工作示例是:

\documentclass[12pt, c5paper]{book}
\usepackage[superscript, biblabel]{cite}
\let\oldthebibliography=\thebibliography
\let\oldendthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
    \oldthebibliography{#1}%
    \setcounter{enumiv}{28}%
}{\oldendthebibliography}

\begin{document}

\ldots it was worked out by Nicholson and Shain \cite{Nicholson64}.

\bibliographystyle{ieeetr}
\bibliography{biblio}

\end{document}

并且里面的biblio.bib文件我有:

@article{Nicholson64,
    journal = "Anal. Chem.",
    volume = "36",
    pages = "706",
    year = "1964",
    author = "R. S. Nicholson and I. Shain",
}

答案1

只需添加nomove选项即可cite

\usepackage[superscript, biblabel, nomove]{cite}

在此处输入图片描述

相关内容