在 tikzposter 中对齐图像

在 tikzposter 中对齐图像

我想在institute命令中按中心对齐三个图形tikzposter

在 beamer 中,我会使用columns但在里面无法这样做institute。目前我只是使用 导入图形includegraphics并用 分隔它们hspace

平均能量损失

\documentclass{tikzposter}

\usepackage{mwe}

\title{Poster Title}

\author{Author} 

\institute{
    \includegraphics{example-image-a}
    \hfill
    \includegraphics{example-image-b}
    \hfill
    \includegraphics{example-image-c}
}

\begin{document}
    \maketitle
\end{document}

答案1

您可以定义一个\midlinegraphic接受两个参数的命令:图形高度和文件名,然后使用该命令\raisebox将图形向下移动一半高度。

平均能量损失

\documentclass[demo]{tikzposter}
\newcommand{\midlinegraphic}[2]{%
  \raisebox{-#1/2}{\includegraphics[height=#1]{#2}}}
\institute{
  \midlinegraphic{1cm}{A}
  \midlinegraphic{3cm}{A}
  \midlinegraphic{2cm}{A}
}
\begin{document}
\maketitle
\end{document}

结果

mwe 的结果

相关内容