Skip to content

Instantly share code, notes, and snippets.

@rischanlab
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rischanlab/2e75856f6607e49e3999 to your computer and use it in GitHub Desktop.
Save rischanlab/2e75856f6607e49e3999 to your computer and use it in GitHub Desktop.
Latex Subfigure
% Sub Figure in Latex
% Rischan Mafrur
% May 10, 2014
\begin{figure}
\begin{subfigure}{.25\textwidth}
\centering
\includegraphics[width=\textwidth]{tweet_tolak.png}
\caption{Caption Sub Figure A}
\label{fig:label_a}
\end{subfigure}%
\begin{subfigure}{.25\textwidth}
\centering
\includegraphics[width=\textwidth]{tweet_pilih.png}
\caption{Caption Sub Figure B}
\label{fig:label_b}
\end{subfigure}
\caption{Caption All Figure}
\label{fig:label_allfigure}
\end{figure}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment