我有一张小表格,我想将其包含在图形内的 tikzpicture 下方的标题中。这可能吗?
答案1
您有以下几种选择:
包括数字作为图像的一部分,而不是标题。
\begin{figure} \centering \begin{tikzpicture} \draw (0,0) -- (1,1); \end{tikzpicture} \caption{This is a caption} \begin{tabular}{c|c} tl & tr \\ \hline bl & br \end{tabular} \end{figure}
使用可选参数来
\caption
区分目录和文本内容。这样您就可以tabular
在标题中插入。\begin{figure} \centering \begin{tikzpicture} \draw (0,0) -- (1,1); \end{tikzpicture} \caption[This is a caption]{This is a caption \begin{tabular}{c|c} tl & tr \\ \hline bl & br \end{tabular} } \end{figure}
这一切都取决于您的用例。在这两种情况下,tabular
都不会以 LoF 结束。