在会议论文中使用如下语句插入图片:
\begin{figure}[!htb]
\centering
\includegraphics[height=2.83cm,width=6.95cm]{./pic/figure1.eps}
\caption{The architecture of fuzzy control system}
\label{figure_sim}
\end{figure}
第一行,h:here,t:top,b:bottom表示将图片按高优先级到低优先级插入到当前位置、顶部、底部;第二行表示图片居中;第三行设置了图片的宽度、高度和位置;第四行设置了图片的名字;第五行设置图片的标签,以后在文章可以引用;第六行表示图片结束。
按照上面方法插入的图片,会显示Fig.1. The architecture of fuzzy control system。但是要求却是前面显示Figure 1.。该如何处理呢?这里在导言区里加入一个命令来改变变量的值。\renewcommand{\figurename}{Figure}。这样就将 Fig 改成了Figure。
---------------------------------
\usepackage[dvips]{graphicx}
\begin{figure}[htbp]\centering %图形居中
\includegraphics[angle=90,width=0.65\textwidth]{p1.eps}
\caption{your figure title} \label{meinv}
\end{figure}
http://bullog.ycool.com/post.2620779.html
没有评论:
发表评论