I understand a number of people have asked similar questions to this but I am yet to find an answer in their questions which solves the problem I'm having.
I am trying to put an image into a pdf. I have done this plenty of times and never had any major issues.
This is some of my code:
\documentclass[a4paper]{article}
\usepackage{times}
\usepackage[margin=1in] {geometry}
\usepackage{mathptmx}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{multirow}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{graphicx}
\graphicspath { {D:\Work\Thesis\Images} }
\begin{document}
\title{Developing...}
\section{xx}
\subsection{xx}
\includegraphics[width=7.5cm]{vv1.jpg}
\end{document}
I have checked the directory of the image clearly and the image name and both are correct. I have tried putting the image in a different document and its worked just fine.
\include graphicsin the question title, with a space, that causes me to suspect that this space could be the reason behind the error. Just a wild guess. – Masroor Jun 24 '14 at 16:05\includegraphicsis correctly spelled in the MWE, however. – Jun 24 '14 at 16:11\graphicspathalways expects a forward slash. See Heiko's answer. – jub0bs Jun 24 '14 at 16:24