I am new with Texmaker. I am trying to insert some images in a document, but only a box with the image name shows up. I tried many compilation settings, two different extensions .png and .eps. But I cannot figure out what is wrong. Here below is the basic code structure.
\documentclass[12pt,a4paper,draft]{article}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{pifont}
\usepackage{enumitem}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{graphicx}
\graphicspath{ {images/} }
\begin{document}
\includegraphics[height = 3cm]{joints.png}
\end{document}
Thanks for your help!
latexorpdflatex? – Bernard May 08 '17 at 16:48draftoption. You can leave out the extension altogether, whatever engine you use will then choice the appropriate file type. – samcarter_is_at_topanswers.xyz May 08 '17 at 16:54