Hello,
Use the package Code:
\usepackage{graphicx} And then :
Code:
\begin{figure}[!h]
\centering
\includegraphics[height=10cm,width=10cm]{C:/path/name.jpeg}
\caption{$\mathcal B(5,1/6)$ : $m<1$}
\end{figure} Be careful with the extension, it can be .jpeg, .JPG, .png, .jpg and maybe others.
Plus, put C:/../../.. instead of C:\..\..\.. and it will work (at least it always work for me)
The [!h] will help you put the figure where you want to. But if there isn't enough space if it's at the bottom of the page, it will be put on top of the next page and the text will fill the bottom of the previous page.
If you want to avoid it, use \newpage, that's the only solution I can see.
Don't take care of the warning you'll get when you compile. Not that important.
Note : I'm using TeXmaker, so I don't know if all this stuff will work on TeXshop or anyother program, but I guess it will.