참고문헌에 반복되는 각주가 나타나지 않음

참고문헌에 반복되는 각주가 나타나지 않음

내 문서에는 각주가 반복되어 있지만 참고문헌에서는 번호가 다름에도 불구하고 각주의 첫 번째 사례만 참조합니다. 나는 참고문헌에 반복적으로 사용된 참고문헌이 나타나기를 원합니다. 내 참조를 관리하기 위해 biblatex를 사용하고 있습니다. 내 코드는 다음과 같습니다.

    \documentclass[11pt,a4paper]{report}
    \usepackage[backend=biber, citestyle=verbose-ibid, sorting=none]{biblatex}
    \bibliography{example}
    \begin{document}
        Here is sometext.\footcite{ref1}
        Some more text.\footcite{ref2}
        Even more text.\footcite{ref1}
        \printbibliography
    \end{document}

렌더링된 문서: 렌더링된 문서

서지

나는 인용문 3이 참고문헌에도 나타나기를 바랍니다.

답변1

솔루션을 제공해 주신 @Johannes_B에게 감사드립니다. 이 문제를 해결하려면 코드를 다음과 같이 변경해야 합니다.

    \usepackage[citestyle=verbose-ibid]{biblatex}

에게:

    \usepackage[style=verbose-ibid]{biblatex}

관련 정보