Skip to content

Instantly share code, notes, and snippets.

@martisak
Forked from RodrigoPrior/subfig.tex
Created July 6, 2017 17:55
Show Gist options
  • Save martisak/d2bffb13794ea84f44a2d7f6f66879b8 to your computer and use it in GitHub Desktop.
Save martisak/d2bffb13794ea84f44a2d7f6f66879b8 to your computer and use it in GitHub Desktop.
subfig latex example
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{subfig}
\begin{document}
\begin{figure}[!ht]
\centering
\caption{Caption superior.}
\subfloat[Figura 1]{\includegraphics[width=0.4\columnwidth]{image_name}}
\qquad
\subfloat[Figura 2]{\includegraphics[width=0.4\columnwidth]{image_name}}
\label{fig:subfigname}
\end{figure}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment