Guest User

Multiple figures with labels

a guest
Aug 14th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.47 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \begin{document}
  4.  
  5. See Figures~\ref{fig:first},~\ref{fig:second} and~\ref{fig:third}.
  6. \begin{figure}
  7.  \begin{minipage}{.33\linewidth}
  8.    \caption{First caption}
  9.    \label{fig:first}
  10.  \end{minipage}%
  11.   \begin{minipage}{.33\linewidth}
  12.    \caption{Second caption}
  13.    \label{fig:second}
  14.  \end{minipage}%
  15.   \begin{minipage}{.33\linewidth}
  16.    \caption{Third caption}
  17.    \label{fig:third}
  18.  \end{minipage}%
  19. \end{figure}
  20.  
  21. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment