Monday, May 3, 2010

LaTeX: how to include a minted pygmentized piece of code in a figure environment, with three minipage in a row

Sometime we want to put two, three or more LaTeX objects side by side on one row. For example we want to put more figures one next to the other. Or we want to build complex figures gathering under one "figure" environment more objects like formatted text, images and highlighted source code using pygmentize and minted. Here below you will find a working example.
The same example is valid if we want to put fancy texts side by side like inside boxes, because the \fbox command does not allow to use complex-formatted text inside.

Here what you get




and here below the code to generate it.

ATTENTION!!!! Pay attenion to not insert empty lines in the source code between minipages!! Otherwise you will get the minipage environment put in a vertical column: because the empty lines will be evaluated as "new line" breaks. I say it here because I waisted some hours looking for this "bug"!!! ;-D :-P



\begin{figure}[h]
\centering
\begin{tabular}{c}
\begin{minipage}[c]{.40\linewidth}
\centering
\epsfig{file=ImagePlaceholder, scale = 2.0}
\end{minipage}
\begin{minipage}[c]{.10\linewidth}
\centering
\epsfig{file=RightArrow_Grey, scale=0.6}
\end{minipage}
\begin{minipage}[c]{.45\linewidth}
\begin{minted}[bgcolor=bg, fontsize=\tiny ]{python}
'3j0lep':{
'selectionCuts': {
'electron':{'deltaR_ej': 0.25}
}

'cuts': { 1: { 'label': 'Cut1',
'value': [20*Units.GeV]},
2: { 'label': 'Cut2',
'value': [100*Units.GeV,
40*Units.GeV,
40*Units.GeV],
},
3: { 'label': 'Cut3',
'value': 80*Units.GeV, },
},
}
\end{minted}
\end{minipage} \\
\\ %empty line for some space
\footnotesize
From requirements...
\hfill
...to the code!\\
\end{tabular}
\caption{Main caption.}
\label{MainILabel}
\end{figure}

0 commenti: