如何使用 更改文本中参考文献的指数表示\documentstyle{article}
。谢谢
答案1
我认为您的意思是引用标注以上标数字的形式形成。
获取此类引文标注的一种方法是使用natbib
选项加载包super
。加载此选项后,\cite{...}
命令将生成引文标注的上标数字。(当然,您还需要选择参考书目样式来确定参考书目部分中条目的格式。)
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{zzz.bib}
@article{uvw,
author = "Anne Author",
title = "Thoughts",
journal= "Circularity Today",
year = 4004,
volume = 1,
number = 2,
pages = "3-33",
}
\end{filecontents}
\usepackage[super]{natbib}
\bibliographystyle{plainnat}
\begin{document}
\dots as was to be shown.\cite{uvw}
\bibliography{zzz}
\end{document}