将数字放入表格列表中?

将数字放入表格列表中?

我从另一个 .pdf 复制了一个表格,并将其作为图形插入到我的 latex 代码中。有没有一个简单的技巧可以将其标签、标题等所有内容视为表格?当然,我希望它出现在表格列表中,而不是图形列表中。

谢谢!

编辑:我尝试过这样的事情:

\begin{table}[h!] 
\begin{figure} 
\includegraphics[width=.6\textwidth]{fig.png} 
\end{figure} 
\caption{tab} 
\label{tab} 
\end{table} 

但它给了我这个错误:

! LaTeX Error: Not in outer par mode.See the LaTeX manual or LaTeX Companion for explanation.Type H <return> for immediate help.... \includegraphics

答案1

浮动环境中的内容并不重要。名称tablefigure仅由宏识别\caption。它必须知道要使用哪种类型的标题。

\begin{table}[h!] \centering
\includegraphics[width=.6\textwidth]{fig.png} 
\caption{tab} 
\label{tab} 
\end{table} 

相关内容