Skip to content

Instantly share code, notes, and snippets.

@Teino1978-Corp
Forked from ashwin/subfloat-row.tex
Created October 31, 2015 02:03
Show Gist options
  • Save Teino1978-Corp/3850c2756385a928e404 to your computer and use it in GitHub Desktop.
Save Teino1978-Corp/3850c2756385a928e404 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