私は博士論文を書いており、表、図、参考文献のリストをまとめた複数の章があります。ただし、複数の章から呼び出す必要があるため、「シンボルのリスト」を配置するのに苦労しています。現時点ではそれらの順序はあまり重要ではないので、一般的なリストで問題ありません (つまり、シンボルを章ごとにグループ化する必要はありません)。
チャプターの 1 つで次のコマンドを使用しても (たとえば)、何も起こりません。\nomenclature{$m$}{質量 (kg)} \printnomenclature
テンプレートをお持ちの場合、またはこれを機能させる方法を知っている場合は、非常に高く評価されます。
私のコード構造は次のとおりです。
\documentclass[a4paper,12pt,twoside]{report}
\usepackage[left=3cm,right=2.5cm,top=2cm,bottom=2.5cm]{geometry}
\usepackage{multirow}
\include{thesis.preamble} % where all packages are embedded.
\usepackage{nomencl}
\makenomenclature
\begin{document}
% -------------------------------------------
% [-] Title Page
% -------------------------------------------
\title{title of the study}
\normallinespacing
\maketitle
\preface
\input{prefaces/abstract}
\input{prefaces/acknowledgements}
% -------------------------------------------
% [-] Main Body
% -------------------------------------------
\body
% [-] Introduction
\input{body/chapter1}
% chapters in between.
% [-] Conclusion
\input{body/chapter8}
\end{document}