Skip to content

Instantly share code, notes, and snippets.

@ashwin
Created July 9, 2014 10:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashwin/da4d839bfcc0936b6d77 to your computer and use it in GitHub Desktop.
Save ashwin/da4d839bfcc0936b6d77 to your computer and use it in GitHub Desktop.
Example of using subfigure package in LaTeX
% Arrange three figures like this:
% Fig 1
% Fig 2 Fig 3
\begin{figure}
\centering
\subfigure[]
{
\includegraphics[scale=.2]{foo1.pdf}
}
\\
\subfigure[]
{
\includegraphics[scale=.5]{foo2.pdf}
}
\qquad
\subfigure[]
{
\includegraphics[scale=.26]{foo3.pdf}
}
\caption
{
(a) blah
(b) blah
(c) blah
}
\label{fig:foobar}
\end{figure}
@dineshadepu
Copy link

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment