对同一个 bib 项目有多种形式的引用标注吗?

对同一个 bib 项目有多种形式的引用标注吗?

让我们使用以下简单示例

\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} 

在此处输入图片描述

相关内容