You are not logged in.
Pages: 1
Hi,
I need to convert my article written in latex to a mulitpage tiff file with the resolution 204x196dpi.
If I create a pdf and then use convert file.pdf file.tiff the output is total crap (the pdf is good).
Do you know how I can directly create a tiff file from latex or get a better result with convert?
Offline
Put:
usepackage{times}
in your tex file. That way you'll use the adobe fonts instead of the ugly default metafont. It might improve the tiff file. Maybe posting one of the page in tiff might also help.
Offline
Tetex distribution comes with dvipng, which produces png images from the dvi file. You could create resolution 200 dpi png images with
dvipng -D 200 article.dvi
and convert them to tiff. I don't know how to set the horizontal and the vertical resolution separately, though.
Offline
@snowman that doesn't help.
@sh__ it works, the resolution of the image is much better, now I only got to figure out, how to make a multipage tiff image from it.
btw.: I hate universities. I'm doing distance physics studies and the force me to send the answers as a multipage tiff.
edit: problem solved: tiffcp test*.tiff test.tiff does create a multipage tiff from test1.tiff test2.tiff .. testN.tiff
just one remaining problem dvipng cuts the right margin off.
edit: also solved: dvipng -D 200 -T 210mm,297mm test.tex
Offline
What are you using to create the pdf anyway? Is it dvipdf?
You could try to compile the .tex. file to a potscript file (ps) with dvips and convert that to a mutlipage tiff.
Offline
Pages: 1