citeindex와 bibindex에 biblatex의 섹션 번호가 포함될 수 있나요?

citeindex와 bibindex에 biblatex의 섹션 번호가 포함될 수 있나요?

부록의 참고문헌 일련번호에 섹션번호가 포함되길 바랍니다. 즉, [1]-> [A.1], [2]-> [A.2], [3]-> [B.1], [4]-> [B.2], [5]-> 입니다 [B.3]. 다음 명령으로 표시된 방정식 번호와 같습니다.

\renewcommand{\theequation}{\thechapter-\arabic{equation}}
\documentclass{article}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{A,title={A}}
@article{B,title={B}}
@article{C,title={C}}
@article{D,title={D}}
@article{E,title={E}}
@article{F,title={G}}
\end{filecontents}

\usepackage[style=gb7714-2015]{biblatex}
\addbibresource{\jobname}

\begin{document}

\section{mainbody}
text\cite{A}
text\cite{B}
\printbibliography

\appendix

\begin{refsection}

\section{appendix 1}
text\cite{C}
text\cite{A}
\section{appendix 2}
text\cite{D,E,F}
\printbibliography

\end{refsection}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보