TikZ 图片内带标题的图形

TikZ 图片内带标题的图形

搜索了几个小时后,我希望有人能帮助我解决我的问题!

我有一个使用 tikzpicture 的命令来绘制一个带标题的框来突出显示我的文档中的某些文本:

\newcommand*{\magicbox}[2]{
\begin{center}
\begin{tikzpicture}
% the box
\node[rectangle,draw=fondtitre!100,fill=fonddeboite!100,inner sep=10pt, inner ysep=20pt] (mybox)
{
\begin{minipage}{12cm}
#2
\end{minipage}
};
% title of the box
\node[fill=fondtitre!100, text=white, rectangle] at (mybox.north) {\sffamily\textbf{#1}};
\end{tikzpicture}
\end{center}
}

现在,我想在框内添加一个图形,这就是我努力寻找解决方案的地方。我尝试执行以下操作:

\newcommand*{\magicbox}[2]{
    \begin{center}
        \begin{tikzpicture}
            % the box
                \node[rectangle,draw=fondtitre!100,fill=fonddeboite!100,inner sep=10pt, inner ysep=20pt] (mybox)
            {
                \begin{minipage}{12cm}
                    #2
                \end{minipage}
             };
            \node[inner sep=0pt] at (1,-1) (image) {\includegraphics[scale=0.20]{myfigure} \label{fig:myfigurelabel} \caption{the caption of my figure}};
            % title of the box
            \node[fill=fondtitre!100, text=white, rectangle] at (mybox.north) {\sffamily\textbf{#1}};
        \end{tikzpicture}
    \end{center}
}

然而,我的身影出现在盒子中间,没有标题。

我在互联网上没有找到 tikzpicture 中带有标题的图片示例。

有人有办法解决我的问题吗?

提前致谢

相关内容