I want to specify path-to-image\image.png but for obvious reasons that will not work because \... is interpreted as a command. How do I include a path to my image? (I'm on Windows 7).
\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[scale=1]{Data Analysis Files\InteractionPlotforTransLog10(X+1)Count.png}
\end{document}
I also tried reversing the slash and using the grffile package with the space option as follows:
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage[space]{grffile}
\begin{document}
\includegraphics[scale=1]{Data Analysis Files/InteractionPlotforTransLog10(X+1)Count.png}
\end{document}
"Data Analysis Files/InteractionPlotforTransLog10(X+1)Count.png"– egreg Jun 05 '11 at 15:02\usepackage[space]{grffile}) without getting any errors or warnings, using MiKTeX 2.9 on Win7. Which distribution do you use? Make suregrffileis installed and updated. – doncherry Jun 05 '11 at 15:13grffileexample? – doncherry Jun 05 '11 at 15:23