<!doctype html public "-//W3C//DTD W3 HTML//EN">
<html><head><style type="text/css"><!--
blockquote, dl, ul, ol, li { padding-top: 0 ; padding-bottom: 0 }
 --></style><title>Re: [Mac OS X TeX] missing ligatures in hard
copy</title></head><body>
<blockquote type="cite" cite>I'm experimenting with ps2pdf as a
replacement for Distiller. I'm using the ps2pdf that comes with
Gerben's TeX.dmg. On screen, the pdf looks great (using CMPS fonts).
However, when I print it, fi ligatures are missing and $\mu$ is
missing. Using Distiller5 on the same ps file gives a pdf that looks
and prints fine.<br>
<br>
The ps file was created using OzTeX for tex-ing and dvips-ing.<br>
</blockquote>
<blockquote type="cite" cite>Any help would be greatly appreciated.
I'd love to be rid of Distiller (slow and still not Carbon not to
mention expensive).</blockquote>
<div><br></div>
<div>I recommend to use first the command</div>
<div> dvips -Ppdf file.dvi</div>
<div><br></div>
<div>and then</div>
<div><br></div>
<div>ps2pdf13 file.ps</div>
<div><br></div>
<div>I have written a small shell script that combines both actions
and removes the .ps file</div>
<div><br></div>
<div>#!/bin/sh<br>
##<br>
# dvipdfc.sh<br>
# Convert dvi files to pdf files<br>
#</div>
<div>#</div>
<div>#</div>
<div>##<br>
</div>
<div><br>
for file; do<br>
  location=$(dirname "$file")<br>
  cd "${location}" && dvips -q -o
"${file}.ps" -Ppdf "${file}" && ps2pdf13
-sPAPERSIZE=a4 -r1200 "${file}.ps" && rm
"${file}.ps"<br>
done<br>
</div>
<div><br></div>
<div>Save it as a text file dvipdfc.sh. One can invoke it with the
command</div>
<div><br></div>
<div>sh dvipdfc.sh filename %%use filename without the suffix
.dvi</div>
<div><br></div>
<div>To make an executable  save the file in ~/bin and issue the
command</div>
<div><br></div>
<div><font face="Verdana" size="-6" color="#000000">chmod ogu+x
~/bin/dvipdfc</font></div>
<div><br></div>
<div><br></div>
<div>Then, after restarting the terminal,</div>
<div><br></div>
<div>dvipdfc filename %% without any suffix</div>
<div><br></div>
<div>will do the job.</div>
<div><br></div>
<div><br></div>
<div>Claus</div>
<x-sigsep><pre>-- 
</pre></x-sigsep>
<div><br>
<br>
Claus Gerhardt<br>
Institut für Angewandte Mathematik<br>
Ruprecht-Karls-Universität Heidelberg<br>
Im Neuenheimer Feld 294<br>
69120 Heidelberg<br>
Germany<br>
<br>
Homepage: http://www.math.uni-heidelberg.de/studinfo/gerhardt/</div>
</body>
</html>