答案1
答案2
默认情况下,图像设置在当前行的基线。您可以使用c
以下命令垂直输入v
adjustbox
的valign=c
选择:
\documentclass{article}
\usepackage[export]{adjustbox}
\newcommand{\scarysymbol}[1][]{\includegraphics[width=1.2em,valign=c,#1]{example-image}}
\begin{document}
Something scary \includegraphics[width=1.2em]{example-image}.
Something scary \includegraphics[width=1.2em,valign=c]{example-image}.
Something scary \scarysymbol.
\end{document}
或者,您可以通过 将图像“提升”到位\raisebox{<value>}{<stuff>}
,其中<value>
可以是负尺寸,<stuff>
是您的\includegraphics
。但是,让 来adjustbox
解决这个问题要简单得多。
为了一致性,将你的恐怖符号存储在宏中(比如说)\scarysymbol
。