多章節中的超連結相同參考(bibunits)

多章節中的超連結相同參考(bibunits)

試試以下 MWE:

\documentclass[bibtotoc]{scrbook}
\usepackage[english]{babel}
\usepackage{natbib}
\usepackage[sectionbib]{bibunits}
\usepackage{hyperref}

% library
\begin{filecontents}{bib.bib}
    @article{REF1,
        title = {Title of first reference},
        journal = {Journal of first reference},
        volume = {1}, number = {1}, pages = {1-100}, year = {2023},
        author = {FirstAuthor, FirstAuthor}
    }        
    @article{REF2,
        title = {Title of second reference},
        journal = {Journal of second reference},
        volume = {2}, number = {2}, pages = {2-100}, year = {2023},
        author = {SecondAuthor, SecondAuthor}
    }
\end{filecontents}

\begin{document}
    \tableofcontents
    \bibliographyunit[\chapter]
    \defaultbibliography{bib.bib}
    \defaultbibliographystyle{agsm}
    
    \chapter{First section}
    \section{First section}
    some text \cite{REF1} more text more citations
    \newpage
    \putbib
    
    \chapter{Second and last section}
    \section{Second section}
    some text \cite{REF1} and \cite{REF2} more text more citations
    \newpage
    \putbib
\end{document}

第二個 REF1 引文上的超連結轉到第一章的參考書目,儘管它出現在第二章。

如何在第二個 REF1 引用路徑上建立第二章參考書目的超連結?

相關內容