这样怎么引用啊?

这样怎么引用啊?

我想要按照图中给出的方式引用研究论文。

enter image description here

我只想引用 Hanneke [5](文章编号)。到目前为止,使用智能引用我还无法做到这一点。

答案1

只是为了说明上述评论

\documentclass{article}
\usepackage[numbers]{natbib}
\usepackage{filecontents}
\usepackage{hyperref}
\hypersetup{
     colorlinks   = true,
     citecolor    = blue
}
\begin{filecontents}{\jobname.bib}
@book{hanneke,
author = "Z. Hanneke",
title = "A very important title",
year = "2019",
publisher = "A very important Publishing House",
}
\end{filecontents}
\newcommand{\mycite}[1]{\citeauthor{#1}~[\citenum{#1}]}
\begin{document}
\mycite{hanneke}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}

会给

enter image description here

相关内容