%20%EC%A0%9C%EB%AA%A9%20%EC%95%84%EB%9E%98%20%EC%84%B9%EC%85%98%EC%97%90%20%EB%94%B0%EB%9D%BC%20%EA%B8%B0%ED%98%B8%EB%A5%BC%20%EA%B7%B8%EB%A3%B9%ED%99%94%ED%95%A9%EB%8B%88%EB%8B%A4..png)
패키지 의 경우 glossaries
섹션 이름 제목 아래에 처음 나타난 섹션에 따라 기호를 그룹화하고 싶습니다. 첫째, 내 코드는 다음과 같습니다.
\documentclass[11pt,a4paper]{report}
\usepackage{amsmath,amsfonts,amssymb,amsthm,blindtext,epsfig,epstopdf,titling,url,array,xspace}
\usepackage[a4paper,bindingoffset=0.2in,left=1in,right=1in,top=1in,bottom=1in,footskip=.25in]{geometry}
\usepackage[nopostdot,style=super,toc]{glossaries}
\newglossary{symbols}{sym}{sbl}{List of Abbreviations and Symbols}
\newglossaryentry{aa}{type=symbols,name={aa},sort=aa,description={This is aa}}
\newglossaryentry{ab}{type=symbols,name={ab},sort=ab,description={This is ab}}
\newglossaryentry{ba}{type=symbols,name={ba},sort=ba,description={This is ba}}
\newglossaryentry{bb}{type=symbols,name={bb},sort=bb,description={This is bb}}
\newglossaryentry{ea}{type=symbols,name={ea},sort=ea,description={This is ea}}
\newglossaryentry{eb}{type=symbols,name={eb},sort=eb,description={This is eb}}
\newglossaryentry{fa}{type=symbols,name={fa},sort=fa,description={This is fa}}
\newglossaryentry{fb}{type=symbols,name={fb},sort=fb,description={This is fb}}
\makeglossary
\begin{document}
\tableofcontents
\printglossaries
\part{one}
\chapter{first}
\section{a}
\gls{aa},\gls{ab}
\gls{ea},\gls{eb}
\section{b}
\gls{ba},\gls{bb},\gls{aa}
\gls{fa},\gls{fb},\gls{ab}
\end{document}
기호는 알파벳순으로 그룹화되어 있는 것 같지만 섹션 이름 제목 아래에 처음 나타난 섹션에 따라 그룹화하고 싶습니다(예: aa,ab,ea,eb는 제목 "a" 및 ba 아래에 그룹화됨). bb,fa,fb는 제목 "b" 아래에 그룹화됩니다. 나는 문서를 읽으려고 많은 시간을 보냈지만 어려움을 겪고 있습니다. 어떤 도움이라도 대단히 감사하겠습니다. 감사합니다.