交叉引用引文及其出现的章节

交叉引用引文及其出现的章节

我想知道是否有办法将引文与引用它们的章节进行交叉引用。例如,如果在第 1 节中给出了引文,那么在参考文献部分,引文 1 应该引用第 1 节。有人知道如何做到这一点吗?另一个例子是这篇论文 -示例论文

答案1

您需要hyperref使用选项加载该包backref=section

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@misc{abc,author = "A and B and C", year = 3001}
@misc{uvw,author = "U and V and W", year = 4001}
\end{filecontents}

\documentclass{article}
\usepackage[colorlinks,citecolor=blue,
            backref=section]{hyperref}
\bibliographystyle{plain} % choose a suitable bib style

\begin{document}
\section{Uno}
\cite{uvw}
\section{Due}
\cite{abc}

\bibliography{mybib}
\end{document}

相关内容