为什么我不能在中心环境中使用 \caption?

为什么我不能在中心环境中使用 \caption?
\begin{center}
\includegraphics[scale=.2]{er.png}
\caption{Activity diagram of Privacy Protection in Smartphone’s by using Mobile Cloud Framework}
\end{center}

答案1

\caption必须出现在“浮动”环境中,例如figuretablecenter环境是不是浮动环境。我认为您想要使用的是一个\captionof{figure}{...}语句。加载caption包以访问\captionof

哦,我很确定应该是Smartphones,不是Smartphone’s......


在此处输入图片描述

\documentclass{article}
\usepackage[demo]{graphicx} % omit 'demo' option in real doc.
\usepackage{caption} % for \captionof macro
\begin{document}
\begin{center}
\includegraphics[scale=.2]{er.png}
\captionof{figure}{Activity diagram of Privacy Protection in 
   Smartphones by using Mobile Cloud Framework}
\end{center}
\end{document}

相关内容