如何将图片置于投影仪标题页的同一基线中央?

如何将图片置于投影仪标题页的同一基线中央?

左图比右图低一点

这是我使用的部分代码,

\titlegraphic{
    \includegraphics[width=2cm]{NCSE} 
    \hfill%
    \includegraphics[width=2cm]{KENT-Blue}
}

我不知道该如何指代这个问题的确切名称。但如果你看图片,你会发现 NCSE 徽标比 Kent 徽标低一点。

可以调整嗎?

谢谢!

答案1

用于\raisebox调整高度。这是一个反复试验的过程,但效果很好。

\titlegraphic{
    \raisebox{10pt}{\includegraphics[width=2cm]{NCSE}}
    \hfill%
    \includegraphics[width=2cm]{KENT-Blue}
}

或者,您可以将其\raisebox用于第二张图片,并为第一个参数输入一个负值。

答案2

您可以使用adjustbox带有选项的包export,以便可以在命令本身valign=b的选项中使用。\includegraphics

\documentclass{beamer}
\usetheme{Warsaw}
%\usepackage{graphicx}
\usepackage[export]{adjustbox}
\title{Title}
\author{A.~Author}
\institute{MWE}
\titlegraphic{
    \includegraphics[valign=b,height=1.5cm,width=2cm]{example-image-A}
    \hfil%
    \includegraphics[valign=b,height=2cm,width=2cm]{example-image-B}
}

\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}

在此处输入图片描述

答案3

这是另一种尝试。minipage与 [b] 对齐使用。

在此处输入图片描述

代码

\documentclass{beamer}
\usetheme{Warsaw}
\usepackage{graphicx}
\usepackage{mwe}
\title{Title}
\author{A.~Author}
\institute{MWE}
\titlegraphic{
\begin{minipage}[b]{0.49\textwidth}
\centering
    \includegraphics[height=1.5cm,width=2cm]{example-image-A}
\end{minipage}
    \hfill%
\begin{minipage}[b]{0.49\textwidth}
\centering
    \includegraphics[height=2cm,width=2cm]{example-image-B}
\end{minipage}
}

\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}

相关内容