我正在写我的小论文,其中包括许多 tikz 图形,它们都列在一个图表中。
图表给出了图表编号,然后是图表标题,如标题所示。
我将它们放入文档的方式如下:
% ----------------
\begin{figure}[h!]
\centering
\includegraphics{./tikz/network.tikz}
\caption{Feed-forward neural network - The red line indicates the path a signal travels from input node $x_2$ to output node $y_4$.}
\label{fig:network}
\end{figure}
%-----------------
我的问题是整个标题被打印在图表列表中,而我希望图表列表中只包含“前馈神经网络”。
如果有人能向我解释如何将图形标题与扩展描述分开,我将不胜感激。
谢谢
答案1
您可以为标题本身和图片列表定义单独的标题。使用\caption
,括号的内容[]
显示在图片列表中,{}
括号的内容显示在图片下方。所以,
\begin{figure}
...
\caption[Feed-forward neural network]{Feed-forward neural network - The red line indicates the path a signal travels from input node $x_2$ to output node $y_4$}
...
\end{figure}