如何从标题中删除“图”字?

如何从标题中删除“图”字?

如何在使用时删除标题figure。我需要一个没有标题或单词的图形Fig

\Figure[!t]()[width=1\textwidth]{figures/loc.pdf} {certain caption. } 在此处输入图片描述

答案1

您可以本地重新定义\caption以忽略其参数。

\documentclass{ieeeaccess}
\usepackage{graphicx}

\begin{document}

\begingroup\renewcommand{\caption}[1]{}%
\Figure[!t]()[width=1\textwidth]{example-image}{}
\endgroup

\EOD

\end{document}

在此处输入图片描述

答案2

在序言中

%set empty label
\usepackage[labelformat=empty]{caption}

在此处输入图片描述

在环境中

\begin{figure}[h]
\centering
\includegraphics[scale=0.2]{vipers-fradi.jpg}
% set caption here
\captionsetup{labelformat=simple,name=MyFig,labelfont=bf,textfont=it}
\caption{"Vipers Kristiansand - Ferencvaros"}
\end{figure}

在此处输入图片描述

相关内容