【已解决】LaTeX使用authoryear引用格式的同时给参考文献编号

前言

创作开始时间:2023年1月23日10:21:25

如题,给出解决方案。

正文

\documentclass[acmsmall]{acmart}

\setcitestyle{authoryear, round, sort}

\begin{document}
xxx %正文

% 这里再改回来
\setcitestyle{numbers}
\bibliographystyle{plainnat}
\bibliography{D:/0-bib/mybib.bib}

\end{document}

关键在于:\setcitestyle{authoryear, round, sort}\setcitestyle{numbers}

这个解决方案很有意思。通过反复调整citestyle就可以做到,我之前以为需要调整refstyle之类的。

小结

以上。

创作结束时间:2023年1月23日10:27:53

参考文献

看了很多参考文献,一开始确实找不到。

  • https://mirror.bjtu.edu.cn/CTAN/macros/latex/contrib/biblatex/doc/biblatex.pdf
  • How to add numbering to reference list but still use authoryear in natbib https://tex.stackexchange.com/questions/412067/how-to-add-numbering-to-reference-list-but-still-use-authoryear-in-natbib
    主要参考了这个。

猜你喜欢

转载自blog.csdn.net/weixin_39278265/article/details/128751720