我正在写我的博士论文,我有多个章节,我在其中编制了表格、图表和参考文献的列表。但是,我很难列出我的“符号列表”,因为我需要从多个章节中调用它们。它们的顺序目前不是很重要,所以一般列表应该没问题(即我不需要逐章对符号进行分组)。
当我在其中一章(例如)中使用以下命令时,没有任何反应。\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}