I am trying to put a figure with a subtitle but without the name "figure".
For example:
'This is a triangle'
and not put the name "Figure":
'Figure: This is a triangle'
I tried:
1.
\begin{figure}
\begin{center}
\includegraphics[scale=*]{fig.jpg}
\caption{*}
\end{center}
\end{figure}
2.
\begin{frame}
\includegraphics[scale=*]{fig.jpg}
\caption{*}
\end{frame}
And neither have worked.
Best Answer
Use the
\caption*
command fromcaption
package.