Hi all,
I have 3 graphs that I need on the same page and vertically aligned. How can this been done in latex? I am used to the subfig commands, but I am not sure how to do it vertically.
Many thanks in advance,
Chloe
Text Formatting ⇒ Vertically aligned Graphs
NEW: TikZ book now 40% off at Amazon.com for a short time.
Vertically aligned Graphs
You don't really need a subfigure command here :
(The package "lipsum" is not part of the solution)
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{lipsum}
\begin{document}
\lipsum[1-2]
\begin{figure}[p]\centering
\framebox{First figure}
\caption{caption}
\framebox{Second figure}
\caption{caption}
\framebox{Third figure}
\caption{caption}
\end{figure}
\end{document}
CDbile