当使用 `\includegraphics` 而不是排版方程式时,如何垂直对齐方程式编号?

当使用 `\includegraphics` 而不是排版方程式时,如何垂直对齐方程式编号?

\includegraphics这是我在方程环境中导入图形时得到的输出:

在此处输入图片描述

但我希望输出是这样的(编辑后的照片):

在此处输入图片描述

我的 MWE:

\documentclass[]{IEEEtran}

    \usepackage{graphicx}   
    \usepackage{amsmath}


\begin{document}


\begin{equation}
    \includegraphics[width=0.8\columnwidth]{my_figure.png}
\end{equation}


\end{document}

答案1

替换graphicx为其扩展名adjustbox,并使用此代码:

\adjincludegraphics[width=0.8\columnwidth, valign = c]{my_figure.png}

相关内容