我现在正在写一篇有几处引文的项目论文。我的导师要求我在文本中使用(作者、年份)样式以供参考,但参考书目需要编号。如何在 natbib 包中实现两种样式的混合?谢谢!
答案1
实际上,当您重新定义biblabel
在参考列表中添加标签时,它会自动将数字显示为标签:
\documentclass{article}
\RequirePackage{natbib}
\makeatletter
\renewcommand\NAT@biblabel[1]{[#1]}
\makeatother
\begin{document}
Text \cite{ref}
\bibliographystyle{plainnat}
\bibliography{References}
\end{document}