여러 참고문헌을 사용하는 동안 숫자 카운터 재설정

여러 참고문헌을 사용하는 동안 숫자 카운터 재설정

나는 여러 개의 참고문헌을 가지고 있습니다(내 논문의 각 장마다 하나씩). 서문에서 다음 명령을 사용하면 모든 것이 잘 작동합니다.


%!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부터 번호가 매겨지도록 카운터를 재설정하려면 어떻게 해야 합니까?

감사해요!!

관련 정보