複数の参考文献を使用しているときに数値カウンターをリセットする

複数の参考文献を使用しているときに数値カウンターをリセットする

参考文献は複数あります (論文の各章に 1 つずつ)。 序文で次のコマンドを使用すると、すべてうまく機能します。


%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode

% Modify the following line to match your school
% Available options include `Harvard`, `Princeton`, and `NYU`.
\documentclass[School=Harvard]{Dissertate}
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\usepackage{chapterbib}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\chapter*}{\section*}{}{}  % Changes the heading to \section
\apptocmd{\thebibliography}{\let\chapter\section}{}{} % Ensures the heading is treated as a section
\apptocmd{\thebibliography}{\vspace*{-3.5em}}{}{}  % Adjust the -1em value as needed

各章にがありbibliography.tex、各章の最後に次のコードを使用しています。

\renewcommand{\bibname}{}

\section{References}

\bibliographystyle{achemso}

\bibliography{bibliographies/ref_chap1}

各章の各参照セクションが前のセクションから連続して番号付けされるのではなく、1 から番号付けされるようにカウンターをリセットするにはどうすればよいですか?

ありがとう!!

関連情報