我正在编写一个 latex 文档,我想添加一个目录。我使用了以下代码:
%%%%% MINI TABLES
\dominitoc % include a mini table of contents
%\dominilof % include a mini list of figures
%\dominilot % include a mini list of tables
% This aligns the bottom of the text of each page. It generally makes things look better.
\flushbottom
% This is where the whole-document ToC appears:
{
\setlength{\baselineskip}{1.1\frontmatterbaselineskip}
\hypersetup{linkcolor=GREYDARK}
\tableofcontents
\listoffigures
\mtcaddchapter
\listoftables
\mtcaddchapter
}
{
\setlength{\baselineskip}{1.1\frontmatterbaselineskip}
\input{sections/glossary}
}
\end{romanpages}
但是当我编译时,我得到一个空的目录和图表,如下所示:
我不明白发生了什么,我收到的唯一日志消息如下(黄色):
有人知道如何解决这个问题吗?