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}

ここに画像の説明を入力してください

関連情報