![여러 참고문헌을 사용하는 동안 숫자 카운터 재설정](https://rvso.com/image/472681/%EC%97%AC%EB%9F%AC%20%EC%B0%B8%EA%B3%A0%EB%AC%B8%ED%97%8C%EC%9D%84%20%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%20%EB%8F%99%EC%95%88%20%EC%88%AB%EC%9E%90%20%EC%B9%B4%EC%9A%B4%ED%84%B0%20%EC%9E%AC%EC%84%A4%EC%A0%95.png)
나는 여러 개의 참고문헌을 가지고 있습니다(내 논문의 각 장마다 하나씩). 서문에서 다음 명령을 사용하면 모든 것이 잘 작동합니다.
%!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부터 번호가 매겨지도록 카운터를 재설정하려면 어떻게 해야 합니까?
감사해요!!