我正在使用floatrow
包来组织我的图形,但随后想在初步章节中添加一个不应包含图形标签的图像,例如图1,但仅限标题致我的家人。我也想消除标题的下划线floatrow
。有没有什么办法可以解决这个问题?代码如下:
\begin{figure}[!h]
\ffigbox[\FBwidth]
{\color{blue}\includegraphics[width=6cm,height=6cm]{./Figures/flower.png}}
{\caption{To my family}}
\end{figure}
答案1
您可以使用\caption*
命令代替\caption
提供的caption
包裹。
\documentclass{article}
\usepackage{floatrow}
\usepackage{caption}
\begin{document}
\begin{figure}[h]
\ffigbox[\FBwidth]
{Your picture is here.}
{\caption*{To my family}}
\end{figure}
\end{document}
答案2
由于您正在使用该caption
包,您还可以设置选项\usepackage[labelformat=empty]{caption}
或者在特定点更改选项使用\captionsetup{labelformat=empty}
。取自字幕手册