Page Layout ⇒ Making two columns - figure + equation
Making two columns - figure + equation
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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Making two columns - figure + equation
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}Re: Making two columns - figure + equation
Thanks for the help !