Loading [MathJax]/extensions/TeX/AMSsymbols.js

Wednesday, October 4, 2017

LaTeX: Figure Captions

A minimal working example.


\documentclass[11pt,letterpaper]{article}
\usepackage{caption}
\usepackage{graphicx}
\pagestyle{empty}
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[scale=0.3]{fsu}
\end{center}
\caption{Using the default figure environment.}
\end{figure}
\begin{figure}
\begin{center}
\includegraphics[scale=0.3]{fsu}
\end{center}
\caption*{Remove caption label using the \texttt{caption} package.}
\end{figure}
\begin{figure}
\captionsetup{name=Photo}
\begin{center}
\includegraphics[scale=0.3]{fsu}
\end{center}
\caption{Change Figure to Photo using \texttt{caption}.}
\end{figure}
% reset next figure number to arbitrary number + 1
\setcounter{figure}{1}
\renewcommand{\thefigure}{\arabic{figure}A}
\begin{figure}
\begin{center}
\includegraphics[scale=0.3]{fsu}
\end{center}
\caption{Adjust figure number and format.}
\end{figure}
\end{document}


1 comment: