[Tex/LaTex] How to remove figure label

captionsfloatrowfloats

I'm using floatrow package to organise my figures, but then would like to add an image in the preliminary chapters which should NOT contain figure label e.g. Figure 1, but only the caption To my family. I also want to eliminate the underline of caption which floatrow does. Is there a way to get around this? The code is as below:

\begin{figure}[!h]
\ffigbox[\FBwidth]
{\color{blue}\includegraphics[width=6cm,height=6cm]{./Figures/flower.png}}
{\caption{To my family}}
\end{figure}

Best Answer

You can use \caption* command instead of \caption provided by caption package.

\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}
Related Question