如何将图像添加到投影仪脚线并使其与文本对齐?

如何将图像添加到投影仪脚线并使其与文本对齐?

我想在我的脚注中添加一个图像并与同一脚注的文本对齐。

我的 beamertheme 中有以下内容。

\def\logo{%
\resizebox{!}{2.5ex}{\includegraphics{logo-small.png}}
}

\mode<presentation>
\defbeamertemplate*{footline}{example theme}
{%
    \begin{beamercolorbox}[wd=\paperwidth,ht=2.5ex,dp=1.125ex,%
        leftskip=.3cm,rightskip=.3cm plus1fil]{separation line}
        \usebeamerfont{section in head/foot}%
        \insertshortauthor\hfill\insertshorttitle\hfill\logo
    \end{beamercolorbox}
}
\mode

答案1

您可以使用 修改图像高度\raisebox{<amount>}{<content>}。 实际上\resizebox{!}{2.5ex}{...}不需要 ,您可以使用宏width的键\includegraphics来调整大小:

\def\logo{%
  \raisebox{<amount>}{\includegraphics[width=2.5ex]{logo-small.png}}%
}

您也可以adjustbox使用该export选项加载包,然后可以使用以下raise密钥\includegraphics

\def\logo{%
  \includegraphics[width=2.5ex,raise=<amount>]{logo-small.png}%
}

相关内容