Created
July 31, 2012 06:41
-
-
Save ashwin/3214295 to your computer and use it in GitHub Desktop.
Sub-figures arranged in rows in LaTeX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\begin{figure} | |
\centering | |
\subfloat[] | |
{ | |
\includegraphics[scale=.6]{fig-1.pdf} | |
\label{fig:foo-1} | |
} | |
\par | |
\subfloat[] | |
{ | |
\includegraphics[scale=.6]{fig-2.pdf} | |
\label{fig:foo-2} | |
} | |
\par | |
\subfloat[] | |
{ | |
\includegraphics[scale=.85]{fig-3.pdf} | |
\label{fig:foo-3} | |
} | |
\caption{ Sub-figures arranged one below another. } | |
\label{fig:foo} | |
\end{figure} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment