Last active
December 15, 2022 16:44
-
-
Save RodrigoPrior/b1469a68058b212f8cb2 to your computer and use it in GitHub Desktop.
subfig latex example
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
\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
thanks!