将使用图像的方程与以图像为中心的另一个方程对齐

将使用图像的方程与以图像为中心的另一个方程对齐

基本上,我有一个方程,它只使用图像作为“变量”;这只是图像减法的一个例证。所以我想做的是让这个方程(我使用 构建的方程将图像中心\vcenter\hbox方程符号对齐)将图像中心与上面或下面的方程对齐,基本上概述了图像是什么,有点像每个图像的标题,但采用方程格式。

下面是给出“图像方程”的 cdoe,但我似乎找不到将另一个方程与每个图像的中心对齐的方法。我试过 align 和 alignat,但我就是无法让语法起作用。

代码:

        \begin{equation*}\label{ImageSubtraction}
        \vcenter{\hbox{\includegraphics[scale=0.15]{01ref}}} - \vcenter{\hbox{\includegraphics[scale=0.15]{02raw}}} = \vcenter{\hbox{\includegraphics[scale=0.15]{03subtract}}}
    \end{equation*}

答案1

这是一种方法(已编辑)...

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{amsmath}

\begin{document}
{\centering\tabcolsep0pt
\begin{tabular}{ccccc}
$\vcenter{\hbox{\includegraphics[width=1cm,height=1cm]{01ref}}} $&${}-{}$& 
$\vcenter{\hbox{\includegraphics[width=1.5cm,height=1.5cm]{02raw}}} $&${}={}$& 
$\vcenter{\hbox{\includegraphics[width=.7cm,height=.7cm]{03subtract}}}$\\
$mx $&${}-{}$& 
$(-b) $&${}={}$& 
$y$
\end{tabular}\par}
\end{document}

在此处输入图片描述

相关内容