Search found 4 matches

by Spacecookies
Fri Jul 16, 2010 8:32 pm
Forum: Graphics, Figures & Tables
Topic: Using figures in an equation?
Replies: 7
Views: 10256

Using figures in an equation?

localghost wrote:The \parbox command doesn't accept the parameter »h« as alignment option.
Ah, good to know. I'll change that.

Thanks!
by Spacecookies
Fri Jul 16, 2010 4:56 am
Forum: Graphics, Figures & Tables
Topic: Using figures in an equation?
Replies: 7
Views: 10256

Using figures in an equation?

Awesome. Thanks for you help! Parbox is exactly what I wanted.

This is what I've settled on, for anyone else who's interested:


\begin{figure}[htb]
\centering
\[
Min\left(
\parbox[h][0.30\linewidth][c]{0.25\linewidth}{
\includegraphics[width=\linewidth]{figures/fig_inputX}
}
\;,\;
\parbox ...
by Spacecookies
Fri Jul 16, 2010 1:13 am
Forum: Graphics, Figures & Tables
Topic: Using figures in an equation?
Replies: 7
Views: 10256

Using figures in an equation?

Okay, interesting suggestion. I'll try that one.

I came up with this, which is almost what I want:

\begin{figure}[htb]
\centering
\[
Min\left(
\begin{minipage}[h]{0.25\linewidth}
\vspace{0pt}
\includegraphics[width=\linewidth]{figures/fig_inputX}
\end{minipage}
,
\begin{minipage}[h]{0 ...
by Spacecookies
Thu Jul 15, 2010 10:57 pm
Forum: Graphics, Figures & Tables
Topic: Using figures in an equation?
Replies: 7
Views: 10256

Using figures in an equation?

Hi all,

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:


\begin{figure}[htb]
\centering
\[
Min\left(
\includegraphics[width=.25\linewidth]{figures/fig_inputX ...