Search found 4 matches

by GP89
Fri Mar 04, 2011 10:51 pm
Forum: Graphics, Figures & Tables
Topic: Compiling conflicts
Replies: 6
Views: 1830

Re: Compiling conflicts

Excellent! Thank you!

After using pdftops and ps2epsi (not sure what the epsi is but it worked the same :) ) the includegraphics accepted my graphic and I can compile again with latex, dvipdf.

Thanks very much for your help!
by GP89
Fri Mar 04, 2011 10:20 pm
Forum: Graphics, Figures & Tables
Topic: Compiling conflicts
Replies: 6
Views: 1830

Compiling conflicts

It compiles fine with the latex, dvips, ps2pdf commands when I comment out the \includegraphics command, but when it's there I get the same error as I was before with latex dvipdf.

Code: Select all

LaTeX Error: Cannot determine size of graphic in projplan.pdf (no BoundingBox
)
by GP89
Fri Mar 04, 2011 9:58 pm
Forum: Graphics, Figures & Tables
Topic: Compiling conflicts
Replies: 6
Views: 1830

Compiling conflicts

Hi,

Thanks for the quick reply!

I've just tried using latex, dvips, ps2pdf but doesn't seem to work. My full build script is;

#!/bin/sh
file=$1
latex ${file}
bibtex ${file}
latex ${file}
latex ${file}
dvips ${file}
ps2pdf ${file}".ps"

I'll try looking into the auto-pst-pdf package

Thanks ...
by GP89
Fri Mar 04, 2011 8:14 pm
Forum: Graphics, Figures & Tables
Topic: Compiling conflicts
Replies: 6
Views: 1830

Compiling conflicts

I'm having an issue which I've not encountered before.

When including a pdf document before using \includegraphics I learnt I had to use pdflatex command to compile my tex file and couldn't use latex, dvipdf.

On another document I was using the poker package which only works if I use latex ...