![複数の参考文献を使用しているときに数値カウンターをリセットする](https://rvso.com/image/472681/%E8%A4%87%E6%95%B0%E3%81%AE%E5%8F%82%E8%80%83%E6%96%87%E7%8C%AE%E3%82%92%E4%BD%BF%E7%94%A8%E3%81%97%E3%81%A6%E3%81%84%E3%82%8B%E3%81%A8%E3%81%8D%E3%81%AB%E6%95%B0%E5%80%A4%E3%82%AB%E3%82%A6%E3%83%B3%E3%82%BF%E3%83%BC%E3%82%92%E3%83%AA%E3%82%BB%E3%83%83%E3%83%88%E3%81%99%E3%82%8B.png)
参考文献は複数あります (論文の各章に 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 から番号付けされるようにカウンターをリセットするにはどうすればよいですか?
ありがとう!!