将图形放在 tikzpicture 和 minipage 内

将图形放在 tikzpicture 和 minipage 内

我制作了这个结构来创建我的海报的标题和徽标

\newcommand{\displaytitle}[3]{%
  \begin{tikzpicture}
    \node [mybox] (box){%
      \begin{minipage}{0.98\textwidth}
        \centering
        \Title{#1}\\%\vspace{1.cm}
        \begin{tabular}{l C{0.79\textwidth}l}
          \multirow{2}{*}{\includegraphics[width=0.06\textwidth]{uu.png}}&
          \LARGE\color{pms187}{#2}&
          \multirow{2}{*}{\includegraphics[width=0.06\textwidth]{mca.jpg}}\\
          &\large\color{pms187}{$^\[email protected]}&\\\vspace{.1cm}\\
          &\Large\color{pms187}{#3}&\\
        \end{tabular}
        \vspace{-1cm}
      \end{minipage}
    };
  \end{tikzpicture}
}

当标题只有一行时,这种方法没问题。如果标题超过一行,徽标(uu.png 和 mca.png)会溢出框tikzpicuture

我正在采取的一种解决方法是让这些图片变小(如图所示)。另一种方法是,我想要将图片放置在更高的位置(就在标题第一行的下方)。我该怎么做? 显示标题的屏幕截图

相关内容