我读过这个话题我按照建议做了,将参考资料放在上标中,但我对效果并不十分满意,因为当我输入时,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",
}