LaTeX newbie here. For a paper I'm writing, I'd like to make a figure that combines images and math. I haven't been able to find an example of this, so I've tried to roll my own:
Code: Select all
\begin{figure}[htb]
\centering
\[
Min\left(
\includegraphics[width=.25\linewidth]{figures/fig_inputX}
,
\includegraphics[width=.25\linewidth]{figures/fig_inputY}
\right) =
\includegraphics[width=.25\linewidth]{figures/fig_output}
\]
\caption{\label{fig:fig_image_equation}
This figure shows a function that takes 2 images as arguments, and returns an image.}
\end{figure}
Thanks for any help!