Hi all -

I've used awk scripts.  The exact thing to do depends on font size and on
windowing system.  Most recently my awk script was this:

BEGIN  {last = -10}
/findfont 8/  {
        last=NR
        $1 = "/Courier-Bold"
        $3 = 11.7 + 2
    }
    {
        if (NR == last+2) {
            $1 = $1+1
            $2 = $2-3
        }
        print
    }

------------
cheers
Miller

On Tue, Dec 10, 2013 at 12:47:18AM +0200, Arda Eden wrote:
> Hi,
> I am just about to finish a Turkish book about Pure Data. I am writing my 
> book using Latex. The patch file example figures I use are directly printed 
> (to file) as postscript files. But the fonts inside the object boxes are 
> vertically justified to the top and that looks ugly (see the sample in 
> attachment).
> 
> Any ideas ?
> Thanks.
> 

> _______________________________________________
> Pd-list@iem.at mailing list
> UNSUBSCRIBE and account-management -> 
> http://lists.puredata.info/listinfo/pd-list


_______________________________________________
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list

Reply via email to