Text Formatting ⇒ Vertically aligned Graphs
Vertically aligned Graphs
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
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
Vertically aligned Graphs
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}