我有一个微小的图像:
我想将其插入到一个简单的等式中。
我想要的是:
我的失败尝试:
$$\includegraphics[scale=.4,halign=c]{tiny_image.png}} \equiv x$$
问题
如何让图像底部低于等式?如何让图像居中,使其看起来像“我想要的是“
答案1
“正常”方式是使用\vcenter
原语。但是,您提供的代码片段使用halign
选项\includegraphics
,这表明您正在使用adjustbox
包;在这种情况下,您可以使用密钥valign
。下面是两种方式的示例。
\documentclass{article}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\begin{document}
\[
a + \includegraphics[width=3em,valign=c]{example-image}
+ \vcenter{\hbox{\includegraphics[width=3em]{example-image}}} = c
\]
无关:请看一下为什么\[ … \]
优于$$ … $$
?