如何为图表添加扩展标题而不将其放入图表目录中?

如何为图表添加扩展标题而不将其放入图表目录中?

我正在写我的小论文,其中包括许多 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}

不过,对于详细的描述,我建议使用图表下方的注释,而不是详细的标题。以下是示例人物

相关内容