将表格添加到图表列表中

将表格添加到图表列表中

我创建了一个图形,出于布局目的,我必须将其放在表格中。当然,现在它显示在表格列表中,而不是图形列表中。有没有什么办法可以让表格变成图形?

答案1

包括caption包裹(始终是个好主意)并在浮点数\captionof{figure}{<figure caption>}内使用table

在此处输入图片描述

\documentclass{article}
\usepackage{caption,graphicx}
\begin{document}

\listoffigures
\listoftables

\begin{table}[t]
  \centering
  \rule{.5\linewidth}{100pt}
  \caption{A table}

  \bigskip

  \includegraphics[width=.4\linewidth]{example-image}
  \captionof{figure}{A figure}
\end{table}
\end{document}

capt-of提供类似的功能。

相关内容