Hi,
To be able to use both latex and pdflatex, I removed the .eps filename
extensions from the filenames in my lyx document. But now lyx cannot
generate previews anymore because the filename specifications do not
point to existing files.
Is this a know issue? If yes, is it fixed in 1.4? It is possible to work
around this problem using symlinks, but this is not very elegant.
Bye,
Martijn Brouwer
For your interest: I stripped the extension of the filenames in my lyx
document with these commands. For a single file you only nedd the second
line. T
for f in $(ls [123456]-*.lyx); do
echo $f; sed -e "s/\(.filename.*\)\.eps/\1/g" /$f > $f.new
done
Rename the .new files in order to used them.