When I create the pdf all I obtain is a frame with the name of the image instead of the image itself. Here’s the code I’m using :
\documentclass[11pt,a4paper,draft]{article}
%Packages importants>>>>>>>>>
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{lipsum}
\usepackage[pdftex]{graphicx}
\graphicspath{{C:/Users/dad/Desktop/projet_recherche}}
\begin{document}
\lipsum[1]
\includegraphics[scale=0.25]{car}\\
\lipsum[2]
\end{document}
Is there something I should omit or add?
draftoption at the\documentclassoption list.draftcauses showing the frame only, in order to speed up the compilation – May 06 '17 at 17:27draftoption is handled tographicxpackage (which is finally responsible for the frame being drawn) – May 06 '17 at 17:33