Created
May 23, 2015 19:14
-
-
Save swaroopjcse/21898c1c6da9d48954a8 to your computer and use it in GitHub Desktop.
Placing figures side-by-side without using any fancy packages. Code based on Sec.1 of http://ftp.math.purdue.edu/mirrors/ctan.org/obsolete/macros/latex/contrib/subfigure/subfigure.pdf
This file contains 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 | |
\parbox{.4\textwidth}{% | |
\includegraphics{img/SE-Discussion} | |
\caption{First.}% | |
\label{fig:2figsA} | |
}% | |
\qquad | |
\begin{minipage}{.4\textwidth}% | |
\includegraphics{img/SE-Discussion2} | |
\caption{Second.}% | |
\label{fig:2figsB}% | |
\end{minipage}% | |
\end{figure}% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment