Text FormattingVertically aligned Graphs

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
chloe
Posts: 3
Joined: Thu Sep 08, 2011 1:04 pm

Vertically aligned Graphs

Post by chloe »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
CDbile
Posts: 19
Joined: Mon Jan 31, 2011 6:48 pm

Vertically aligned Graphs

Post by CDbile »

You don't really need a subfigure command here :

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}
(The package "lipsum" is not part of the solution)
CDbile
Post Reply