Hello,
I have a file that I compiled it with the following command:
latex --include-directory=../folder2 file.tex
where folder2 contains some eps images and tex input files.
However, dvips gives the following error:
dvips.exe: Could not find figure file image.eps; continuing
an absolute path or a relative path with .. are denied in -R2 mode
How to get red of the -R2 mode??
I tried the switch -R0 but nothing changed
Regards,
Conversion Tools ⇒ Relative path problem with dvips
NEW: TikZ book now 40% off at Amazon.com for a short time.
Relative path problem with dvips
Have you tried specifying a path to images folder in the preamble of your .tex document instead of adding an argument to latex command? Something like this:
Maybe you'll find this and this helpful.
Code: Select all
\graphicspath{{folder2/}}