I have some trouble with inserting a picture in latex the way I want. I want it to look like this.
However I've tried implement this using the code below
\begin{figure}[H]
\begin{center}
\begin{tabular}{l}\includegraphics[width=0.1\textwidth]{Basic}\end{tabular}%
\hspace{1em}%
\textrm{Basic event type}
\caption{Circle}
\end{center}
\end{figure}
This however result in
I want to remove the caption number "Figure 1:" and also center it beneath the picture. And I can't seem to get it to work. Can anyone help me with this?
Kind Regards Carl



\begin{center}....\end{center}in afigureenvironment – Feb 21 '17 at 09:04\centeringinstead. – Feb 21 '17 at 10:06centerenvironment with afigureone: if you just want to center something that is already vertically positioned (as is often the case inside a figure environment) then \centering is what you need, but if you want to implement a displayed construct that happens to need centred content, then center is what you should use. – CarLaTeX Feb 21 '17 at 11:08centeringin floats, but there is nothing wrong in usingcenter; it doesn't break anything. – Bananguin Feb 21 '17 at 11:14