I tried inserting the eps file into MS Word and it didn't print there
either. With or without a wmf preview inserted by GSview didn't
matter, for either application.
The brute force option of retyping the table does not count as a
solution.
I have a similar problem with some graphics I wish to insert in
PowerPoint, but I found a way around that problem.
I apologize if there is an existing thread on this. I did spend a
finite amount of time looking.
--
Alan Wehmann
weh...@fnal.gov
#-----------------------------------------------------------------
# Give all the numbers of your output pages (2 3 4 5 6 7 etc)
#-----------------------------------------------------------------
for i in 2 3 4 5 6 7 8 9 10;
do
#
# Name of the output files
#
file=${FILENAME}_${i};
#-----------------------------------------------------------------
# Create a PostScript file for every page
#-----------------------------------------------------------------
dvips -f ${TEXFILE} -n1 -p$i -x950 -D600 -Z -o $file.ps;
done
for i in 2 3 4 5 6 7 8 9 10;
do
file=${FILENAME}_${i};
#-----------------------------------------------------------------
# Convert the PostScript file to a ppm file, use resolution 300 and
# paperzise A4
#-----------------------------------------------------------------
gs -r300 -sOutputFile=$file.ppm -sDEVICE=ppmraw -sPAPERSIZE=a4 $file.ps
quit.ps < /dev/null
#-----------------------------------------------------------------
# Convert the ppm file to the slideprinter format (tga)
#-----------------------------------------------------------------
convert -verbose -rotate 90 -compress RunLengthEncoded $file.ppm
$file.tga;
#-----------------------------------------------------------------
# Remove the huge ppm file
#-----------------------------------------------------------------
rm -r $file.ppm;
#-----------------------------------------------------------------
# convert the tga file to a tga file which has the same geometry as the
# original PostScript file and add a "s" to the filename
#-----------------------------------------------------------------
filesmall=`echo $file.tga | sed -e 's|.tga|s.tga|'`;
echo $filesmall;
convert -verbose -geometry 842x596 $file.tga $filesmall;
echo $file.tga
done
exit 0
Sent via Deja.com http://www.deja.com/
Before you buy.
Otherwise, you need to forget using .eps with PowerPoint, because
all you will get on screen will be the preview (if there is one), which
is usually not all that great quality. Instead, you could use a dvi
previewer which allows cutting and pasting to the Windows clipboard
in wmf format (then your pasted table will resize OK, but you'll
need to be careful to ensure all necessary fonts are carried around
with your PowerPoint presentation).
David Wilson
> I've been unable to extract a table from a LaTeX document and insert
> it into MS PowerPoint & am looking for tips for doing this. I've
> tried making the table into an Encapsulated Postscript file (EPSF--via
> dvips -E) and inserting that into the PowerPoint slide, but the epsf
> file does not print.
>
> I tried inserting the eps file into MS Word and it didn't print there
> either. With or without a wmf preview inserted by GSview didn't
> matter, for either application.
>
> The brute force option of retyping the table does not count as a
> solution.
It depends on the TeX System you are using. Some let you copy to
the clipboard and paste into whatever application you are using.
Rolf S. Arvidson
Rice University
Dept. of Geology and Geophysics
email: rsa...@ruf.rice.edu
web: http://zephyr.rice.edu/department/facilities/geochemistry/
Alan Wehmann <weh...@fnal.gov> wrote in message
news:v0xyabe...@fsgi03.fnal.gov...
> I've been unable to extract a table from a LaTeX document and insert
> it into MS PowerPoint & am looking for tips for doing this. I've
> tried making the table into an Encapsulated Postscript file (EPSF--via
> dvips -E) and inserting that into the PowerPoint slide, but the epsf
> file does not print.
>
> I tried inserting the eps file into MS Word and it didn't print there
> either. With or without a wmf preview inserted by GSview didn't
> matter, for either application.
>
> The brute force option of retyping the table does not count as a
> solution.
>
> I have a similar problem with some graphics I wish to insert in
> PowerPoint, but I found a way around that problem.
>
> I apologize if there is an existing thread on this. I did spend a
> finite amount of time looking.
>
> --
> Alan Wehmann
> weh...@fnal.gov
In the case of Canvas on my Mac and the Adobe printer driver, the
combination does set the gray level to black (I believe this after
looking at the eps file) & that is why insertions of eps from a Canvas
drawing were working in MS PowerPoint.
Alan Wehmann <weh...@fnal.gov> writes:
> I've been unable to extract a table from a LaTeX document and insert
> it into MS PowerPoint & am looking for tips for doing this. I've
> tried making the table into an Encapsulated Postscript file (EPSF--via
> dvips -E) and inserting that into the PowerPoint slide, but the epsf
> file does not print.
>
> I tried inserting the eps file into MS Word and it didn't print there
> either. With or without a wmf preview inserted by GSview didn't
> matter, for either application.
>
> The brute force option of retyping the table does not count as a
> solution.
>
> I have a similar problem with some graphics I wish to insert in
> PowerPoint, but I found a way around that problem.
>
> I apologize if there is an existing thread on this. I did spend a
> finite amount of time looking.
>
> --
> Alan Wehmann
> weh...@fnal.gov
--
Alan Wehmann
weh...@fnal.gov
Get TtH [http://hutchinson.belmont.ma.us/tth]
Use it to translate your file to HTML.
Import the HTML into MSWord.
Voila!
Ian Hutchinson.