Skip to content

Instantly share code, notes, and snippets.

@ashwin
Created July 31, 2012 06:41
Show Gist options
  • Save ashwin/3214295 to your computer and use it in GitHub Desktop.
Save ashwin/3214295 to your computer and use it in GitHub Desktop.
Sub-figures arranged in rows in LaTeX
\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