如何处理实际上是表格的图形?

如何处理实际上是表格的图形?

我已经将表格设置为 PDF,我需要将其包含在内,因此问题是:如何将其作为图形包含在内,但将其称为表格?我还想将其从图形列表移动到表格列表。

答案1

这是一个常见的误解,\includegraphics需要在图形环境中。其实不需要,所以你当然可以这样做

\begin{table}
    \centering
    \includegraphics{mytablefile.pdf}
    \caption{My table that I have as a PDF file}
    \label{tab:mytab}
\end{table}

As we see in Table~\ref{tab:mytab}, ...

答案2

使用

\begin{table}
\centering
\includegraphics{pdfwithimageoftable}
\caption{my table\label{zzz}}
\end{table}

相关内容