I'm having some problem formatting a segment of my paper into two columns.
I wish to put a figure next to an equation, and the "easiest" way would be to make two columns - how do I do that ? I know how to do it for a figure and a text segment, but how do I do it for a figure and an equation (!) ?
Thanks for any help.
Page Layout ⇒ Making two columns - figure + equation
NEW: TikZ book now 40% off at Amazon.com for a short time.
Making two columns - figure + equation
Hi
one possibility would be to use minipage environments; take a look at the following example:
If your figure doesn't require a caption then you can safely remove the \captionof command
one possibility would be to use minipage environments; take a look at the following example:
Code: Select all
\documentclass{article}
\usepackage{caption}
\usepackage{amsmath}
\begin{document}
\noindent\begin{minipage}{.45\textwidth}
\centering
\rule{4cm}{3cm}
\captionof{figure}{Test figure.}
\label{fig:figure}
\end{minipage}
\begin{minipage}{.45\textwidth}
\begin{align}
a &= b\\
&= c\\
&= d
\end{align}
\end{minipage}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Making two columns - figure + equation
Tried out minipage, and got the figure perfectly aligned with the equation now.
Thanks for the help !
Thanks for the help !