Skip to content

Instantly share code, notes, and snippets.

@ultimatile
Last active June 10, 2018 12:44
Show Gist options
  • Save ultimatile/8dab02ea896f64d12a0bae7dace83f3c to your computer and use it in GitHub Desktop.
Save ultimatile/8dab02ea896f64d12a0bae7dace83f3c to your computer and use it in GitHub Desktop.
appose two figures in LaTeX
\begin{figure}[htbp]
\begin{minipage}{0.5\hsize}
 \centering
  \includegraphics[width=70mm]{fig1.png}
\caption{caption1}
\label{fig1}
\end{minipage}
\begin{minipage}{0.5\hsize}
 \centering
  \includegraphics[width=70mm]{fig2.png}
\caption{caption2}
\label{fig2}
\end{minipage}
\end{figure}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment