我正在 beamer 环境中创建一组幻灯片。
$\alpha(\includegraphics[width=0.3in]{T_n-down.eps})=$
显示在其文本行上方。如何降低它以使对象的底部位于文本的基线上?图形对象的边距被修剪。提前谢谢您。
答案1
您可以将\includegraphics
指令放入包装器中\vcenter{\hbox{...}}
。
\documentclass[demo]{beamer} % remove 'demo' option in real doc.
\begin{document}
\begin{frame}
$\alpha(\includegraphics[width=0.3in]{T_n-down})=$
\quad vs.\ \quad
$\alpha\left(\vcenter{\hbox{\includegraphics[width=0.3in]{T_n-down}}}\right)=$
\end{frame}
\end{document}
答案2
您可以使用adjustbox
包及其valign=...
键。这允许您指定图像的各种不同对齐方式。例如:
\documentclass{beamer}
\usepackage[export]{adjustbox}
\begin{document}
\begin{frame}
$\alpha(\includegraphics[width=0.3in,valign=c]{example-image-duck})=$
\end{frame}
\end{document}
其他可用值valign
此概述中显示了adjustbox 文档: