作为我正在编写的文档的一部分,我试图将图像作为等式的一部分,我已设法使其工作,但是图像的底部设置为与等式底部相同的高度,而不是图像的中心。
示例代码:
\begin{equation}
P_{i} = \includegraphics[scale = 0.4]{figure.pdf}
\end{equation}
我想知道如何调整它以便图像的中心线与等号对齐。
答案1
两种解决方案:
\documentclass{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[export]{adjustbox}% for the second solution
\usepackage{duckuments}% for the images
\begin{document}
\begin{equation}
P_{i} =
\begin{gathered}
\includegraphics[height=3cm]{example-image-duck}
\end{gathered}
\end{equation}
\begin{equation}
P_{i} =
\includegraphics[height=3cm,valign=c]{example-image-duck}
\end{equation}
\end{document}
您可以看到,第一种情况下的居中并不“完美”。