摆脱图 1:位
在我的 Latex 文档中,我有许多带有标题的图形,如下所示:
\begin{wrapfigure}{l}{0.35\textwidth}
\begin{center}
\includegraphics[width=0.25\textwidth]{zhangsanfeng.jpg}
\end{center}
\caption{Zhang Sanfeng}
\end{wrapfigure}
这将为我提供图片和标题 图 1:张三丰
我想摆脱 图 1 :有点。
我有以下内容:
\renewcommand{\figurename}{}
\renewcommand{\thefigure}{}
这去掉了图1,但没有去掉:,所以我留下了:张三丰。
我该如何摆脱这个?
另外,是否有任何资源列出了可以更新的命令..我在任何地方都找不到任何东西!
谢谢。
In my Latex document I have a number of figures with Captions like the following :
\begin{wrapfigure}{l}{0.35\textwidth}
\begin{center}
\includegraphics[width=0.25\textwidth]{zhangsanfeng.jpg}
\end{center}
\caption{Zhang Sanfeng}
\end{wrapfigure}
This will give me the picture and a caption of Figure 1 : Zhang Sanfeng
I want to get rid of the Figure 1 : bit.
I have the following :
\renewcommand{\figurename}{}
\renewcommand{\thefigure}{}
This gets rid of the Figure 1 but does not get rid of the : so I am left with : Zhang Sanfeng.
How do I get rid of this?
Also, is there any resource available that lists the commands that can be renewed.. I can't find anything anywhere!
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
caption
包:将从标题中删除“Figure n:”。
Using the
caption
package:Will remove the "Figure n:" from your captions.