목차 앞에 기호 나열

목차 앞에 기호 나열

내 LaTeX는 다음과 같습니다(뭔가를 생략했습니다).

\documentclass{amsbook}

\usepackage{fancyhdr,etoolbox}

\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[LO]{\nouppercase\rightmark}
\fancyhead[RE]{\nouppercase\leftmark}

\newcommand{\set}{\mathsf{Set}}
\newcommand{\grp}{\mathsf{Gr}}
\newcommand{\ab}{\mathsf{Ab}}
\newcommand{\grd}{\mathsf{Grpd}}
\newcommand{\ring}{\mathsf{Ring}}

\renewcommand{\contentsname}{Table of contents}
\makeatletter
\patchcmd{\@tocline}
  {\hfil}
  {\leaders\hbox{\,.\,}\hfil}{}{}
\makeatother

\begin{document}

\pagestyle{plain}

\frontmatter

\title{\textsc{AAAZZZ}}
\author{LZ}

\maketitle

\chapter*{Abstract}
The goal of this notes is to describe \ldots

\chapter*{List of Abbreviations and Symbols}

\tableofcontents

\mainmatter

\cleardoublepage

\pagenumbering{arabic}
\pagestyle{fancy}

\chapter{Preliminaries on A}

\chapter{Results on Z}

\appendix

\chapter{More results on Z}

\backmatter

\begin{thebibliography}{10}

\end{thebibliography}

\end{document}

위의 코드에서와 같이 내가 직접 정의한 일부 기호를 나열하고 싶습니다.

\newcommand{\set}{\mathsf{Set}}
\newcommand{\grp}{\mathsf{Gr}}
\newcommand{\ab}{\mathsf{Ab}}
\newcommand{\grd}{\mathsf{Grpd}}
\newcommand{\ring}{\mathsf{Ring}}

(세트, 그룹, 아벨 그룹, 그룹형, 링의 범주에 대해 하나씩 나타냅니다.) 앞의 "약어 및 기호 목록" 장(단지 1~2페이지)에 있습니다 toc. 관련 있는 방법을 찾았습니다.여기,여기그리고여기, 그러나 내 상황에서는 nomencl또는 중 하나를 사용하여 작동하지 않습니다 glossaries. 그 중 적어도 하나를 적용하여 작동하게 하려면 어떻게 해야 합니까?

질문 하나 더: 위와 같은 상황에서 "étale, Ngô Bảo Châu"(매번 \'etale 등을 사용하는 대신)와 같이 악센트가 있는 프랑스어 및 가능한 다른 언어(영어 텍스트에서)를 사용하는 방법은 다음과 같습니다. 꽤 자주)?

관련 정보