图题中靠近表格的标题

图题中靠近表格的标题

我需要指导来制作下面的图片。我看不到将标题放在小表格的右侧(a,b,c),如下图所示。有什么想法吗?

在此处输入图片描述

这是我的代码:

\begin{figure*}
\begin{center}
    \includegraphics[width=1.00\textwidth]{Fig01.png}       
    \begin{tabular}{|c|c|c|}
       \hline
       \multicolumn{2}{|c|}{a}  \\\hline
       b & c \\\hline           
    \end{tabular}       
 \caption{Caption1 here...}
 \label{Fig:Fig01}  
 \end{center}

\结束{图*}

答案1

这可能是一个起点:

\documentclass[twocolumn]{article}

\usepackage[singlelinecheck=false]{caption}
\usepackage[demo]{graphicx} % demo is just for the example
\usepackage{kantlipsum} % just for the example

\begin{document}

\kant[1-3]

\begin{figure*}
\centering

\includegraphics[width=1.00\textwidth]{Fig01.png}

\let\normalfigurename\figurename
\renewcommand{\figurename}{%
  \begin{tabular}[b]{|c|c|c|}
  \hline
  \multicolumn{2}{|c|}{a}  \\\hline
  b & c \\\hline
 \end{tabular}\ \normalfigurename}
\caption{Caption1 here...}
\label{Fig:Fig01}

\end{figure*}

\kant[4-8]

\end{document}

在此处输入图片描述

相关内容