在我的Latex文档中,我有许多带有如下标题的数字:
\begin{wrapfigure}{l}{0.35\textwidth}
\begin{center}
\includegraphics[width=0.25\textwidth]{zhangsanfeng.jpg}
\end{center}
\caption{Zhang Sanfeng}
\end{wrapfigure}
Run Code Online (Sandbox Code Playgroud)
这将给我的图片和图1的标题:张三峰
我想摆脱图1:位.
我有以下内容:
\renewcommand{\figurename}{}
\renewcommand{\thefigure}{}
Run Code Online (Sandbox Code Playgroud)
这摆脱了图1,但没有摆脱:所以我留下:张三峰.
我怎么摆脱这个?
此外,是否有任何可用资源列出可以续订的命令..我找不到任何地方!
谢谢.
Ano*_*on. 20
使用caption包:
\usepackage[labelformat=empty]{caption}
Run Code Online (Sandbox Code Playgroud)
将从您的标题中删除"图n:".