将表格标题添加到 IEEEtran 图表中

将表格标题添加到 IEEEtran 图表中

我在用IEEEtran文檔類別。

我想导入一个图形并给它添加表格标题,即表 1

\begin{table}
\caption{Table 1}
\Figure[h!](topskip=0pt, botskip=0pt, midskip=0pt){fig1.png}
\end{table}

这可能吗?或者还有其他方法吗?谢谢

答案1

标题版本由环境table和控制figure。如果有,table它将是表格标题。您可以将图片包含到其中,但请使用包graphicx

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{table}[htb]
  \centering
  \caption{Test of table caption}
  \includegraphics[width=0.5\linewidth]{example-image-a}
  \label{tab:MyTable}
\end{table}
\begin{figure}[htb]
  \centering
  \includegraphics[width=0.5\linewidth]{example-image-b}
  \caption{Test of figure caption}
  \label{tab:MyFigure}
\end{figure}
In Table~\ref{tab:MyTable} it is a table caption and in Figure~\ref{tab:MyFigure} it is a figure caption.
\end{document}

在此处输入图片描述

相关内容