[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[mgp-users-jp 00518] Re: mgp を 6枚/頁で、配布用に印刷するに は?



$B$*Lr$KN)$D$+$I$&$+J,$+$j$^$;$s$,!"0J2<$N$h$&$J(B script + psutils$B$G(B
$B$d$C$F$^$9!#(B
$BDL$7HV9f$O$D$-$^$;$s!#$"$7$+$i$:(B...

$B?t;z$OE,Ev$G$9!#3F<+D4@0$7$F$/$@$5$$!#(B

takesi
----------------------------------------------------------------
#!/bin/sh
# A4 paper = 297mm x 210mm
height=297
left_margin=15mm
top_margin=20
mult=0.28
ystep=85

y=`expr $height - $top_margin`
arg="6:"
arg=$arg"0R@$mult($left_margin,${y}mm)+1R@$mult(105mm,${y}mm)"
y=`expr $y - $ystep`
arg=$arg"+2R@$mult($left_margin,${y}mm)+3R@$mult(105mm,${y}mm)"
y=`expr $y - $ystep`
arg=$arg"+4R@$mult($left_margin,${y}mm)+5R@$mult(105mm,${y}mm)"

pstops $arg $@