\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
必须出现在“浮动”环境中,例如figure
或table
。center
环境是不是浮动环境。我认为您想要使用的是一个\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}