여러 장의 동일한 참조 하이퍼링크(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 인용 경로에 두 번째 장의 참고문헌에 대한 하이퍼링크를 어떻게 만들 수 있나요?

관련 정보