I have the following code:
\begin{figure}[htp]
\centering
\includegraphics[]{home/me/Music/MSc/Thesis/genbank.png}
\caption{The growth of genbank}\label{fig:name}
\end{figure}
But a blank box appears with the path to the file. Why is this?
Other questions on this site have had paths with special characters, and removing them has solved the problem. However, I don't have any special characters in mine. My packages list is:
\usepackage{booktabs}
\usepackage[english]{babel}
\usepackage{grffile}
\pagenumbering{roman}
\newcounter{qcounter}
\let\centering\relax
\usepackage{color, colortbl}
\definecolor{name}{system}{definition}
\definecolor{Gray}{gray}{0.9}
\definecolor{LightCyan}{rgb}{0.88,1,1}
\usepackage{caption}
\usepackage{tikz}
\usepackage{babel}
\usepackage{graphicx}
\usepackage{csquotes}
\usepackage{fancybox}
\MakeOuterQuote{"}
\usepackage[utf8]{inputenc}
\usepackage{amsmath, amsthm, amssymb}
What is the problem?
draftamong thedocumentclassoptions? Edit: If so, remove it, what you're seeing is one of the effects. See also http://tex.stackexchange.com/questions/11004/why-does-the-image-not-appear – Torbjørn T. Sep 26 '13 at 16:53draftas a\documentclasoptions, specifyfinalas an option tographicx. I.e.\usepackage[final]{graphicx}. (I realize that your problem may be due to something else, I just added this comment for others reading this question.) – Johan_E Sep 26 '13 at 18:16