Darren Dale <[EMAIL PROTECTED]> writes:

> The problem is that on windows, the TEMP environment variable is
> something like 'C:\\Documents and Settings\\Darren\\Local
> Settings\\Temp' or 'C:\\DOCUME~1\\Darren\\LOCALS~1\\TEMP', and
> \includegraphics is not able to deal with filenames that have spaces
> or tildes (this has been declared a feature, not a bug).

I don't have a Windows system to test on, but on a Mac the following trick
seems to deal with the tildes:

    \documentclass{article}
    \usepackage{graphicx}
    \catcode`\~11
    \graphicspath{{/tmp/foo~bar/}}
    \catcode`\~13
    \begin{document}
    \includegraphics{stuff.pdf}
    \end{document}

If I put stuff.pdf in /tmp/foo~bar, pdflatex (from TeX Live) finds it
just fine. Handling spaces seem to be a more difficult problem...

-- 
Jouni


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to