[Tex/LaTex] how to create a side caption without Figure number

captionsfloatssidecap

I am a very new Latex beginner. I would like to create a figure with side caption. However I would like to omit the "Figure" text inserted by default from Latex. For example, with the below code, I could produce the below figure. But I don't want the word "Figure 1.2" appears in the caption. How would you do that ? Many thanks

\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{sidecap}


\begin{document}

 \begin{SCfigure}
 %\centering
 \caption {my caption text}
 \includegraphics[width=0.5\textwidth]    {myfigure}
 \end{SCfigure}

 \end{document}

enter image description here

Best Answer

I have figured it out: I used \usepackage{caption} and use command \caption*{text here} that would solve the problem. Cheers.

Related Question