让我们使用以下简单示例
\pdfoutput=1
\documentclass[a4paper,11pt]{article}
\usepackage{natbib}
\usepackage{hyperref}
\begin{document}
\title{}
\author{}
\date{}
\maketitle
\section{Test}
According to \citet{AB00} we have that...
According to Paper I we have that...
\begin{thebibliography}{9}
\bibitem[\protect\citeauthoryear{Atuhors}{2000}]{AB00} Author A., Author B., 2000, Journal, 01, 001 (Paper I)
\end{thebibliography}
\end{document}
我的问题如下:如何在正文中添加“论文 I”形式的引用标注(最好是超链接),以便与参考文献相关联AB00
?
答案1
我认为这里\defcitealias{AB00}{Paper 1}
是\citetalias{AB00}
正确的工具:
% \pdfoutput=1
\documentclass[a4paper,11pt]{article}
\usepackage{natbib}
\usepackage{hyperref}
\begin{document}
\title{}
\author{}
\date{}
\maketitle
\defcitealias{AB00}{Paper 1}
\section{Test}
According to \citet{AB00} we have that...
According to \citetalias{AB00} we have that...
\clearpage
\begin{thebibliography}{}
\bibitem[\protect\citeauthoryear{Authors}{2000}]{AB00} Author A., Author B., 2000, Journal, 01, 001 (Paper I)
\end{thebibliography}
\end{document}