目次の前に記号を記載する

目次の前に記号を記載する

私の 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。 少なくとも 1 つを適応させて機能させるにはどうすればよいでしょうか?

もう 1 つ質問があります。上記のような状況で、英語のテキストで、フランス語や、アクセント付きの他の言語 (「étale, Ngô Bảo Châu」など) を使用するにはどうすればよいでしょうか (頻繁に使用するため、毎回 \'etale などを使用するのではなく)?

関連情報