0

I have a problem with images not showing up. The latex recognises them (see screenshot) but doesn't generate them to pdf document. They are in the same folder. I tried including image extensions and with the part that is commented. The images are .png.

Here is the code:

\documentclass[12pt,a4paper,draft,pdftex]{article}    
\usepackage[pdftex]{graphicx}  
\usepackage{mathtools}  
\usepackage{amsthm}  
\usepackage{amsfonts}   

%\graphicspath{name/Dropbox/projectProgramming/graphs/}

\begin{figure}[p]
\centering
\includegraphics[width=\textwidth]{avgP}
\caption{Average}
\end{figure}

Screenshot

Lior
  • 1

1 Answers1

0

I found the solution by removing pdftex and draft from documentclass.

\documentclass[12pt,a4paper]{article}
Lior
  • 1