Tagged Questions
5
votes
1answer
116 views
How to check image exists or not?
I'm working on Sweave and using includegraphics for include image in report dynamically.
Pseudocode:
<<>
for ( i to 100) # run loop 1 to 100
{
...
3
votes
1answer
476 views
Unable to load picture or PDF file
XeLaTeX has stopped including .eps files in my document. I get errors such as:
! Unable to load picture or PDF file './images/deBuitleir.fig4.eps'.
The image file is there, I double-checked.
...
1
vote
1answer
80 views
Multiple graphics.cfg?
I'm using tex-live on a Ubuntu machine.
I got a customized graphics.cfg file (configuration file for the graphix package)
that I'd like to use as default on my system.
I've tried to locate the ...
3
votes
2answers
369 views
How to include graphics from a complex file structure
I am writing a Latex file that needs to include figures from a directory graphs.
graphs has several sub-directories say, one , two and three. These individually contain several graphics that should ...
12
votes
2answers
603 views
Automatically Locate Included Images
Do you think it's possible to include images into LaTeX without specifying the exact path to them. So instead of:
\includegraphics{path/to/image/myfig.pdf}
It would be:
\includegraphics{myfig.pdf}
...
43
votes
4answers
4k views
\includegraphics: Dots in filename
\includegraphics cannot handle filenames that contain more than the one dot, separating the filename from the extension. Apparently it uses everything after the first dot as extension and then, of ...