[Keynote], [Mac OS X Softwares], [Setting up Mac]
If you simply use default settings for PAW to create plots and import them to Keynote slides, the lines are too thin, and characters are too small. Here are some examples to solve the problem.
defaults -auto '.,~/kumacs/'This way, kumac commands in the current directory and ~/kumacs/ will be available at any directory.
PAW > h/file 1 foo.hbook PAW > mplot PAW > h/plot 100 PAW > fort/file 22 foo.ps PAW > meta 22 -111 PAW > h/plot 100 PAW > meta 0 PAW > close 22If you use lplot instead, the output will be more suitable for large plots filling the entire slide.
In some cases, you only have a PS file but you cannot use PAW to recreate it. One easy way out of this is to edit the PS file.
/c {setrgbcolor} def /lw {setlinewidth} def /sd {setdash} defThe "/lw {setlinewidth} def" is defining a new command called "lw", which simply does "setlinewidth". Leave this as it is.
1 1 Zone gsave 0 0 t black [] 0 sd 1 lw 2223 2224 0 460 bl 2223 2224 0 460 C NC 1779Notice "1 lw" burried in the line? This sets the line width (lw = setlinewidth command) to "1". Postscript is written in a Reverse Polish Notation (RPN), just like good old HP calculators. You push arguments into a stack, and then following operator will retrieve the arguments from the stack does its job.
2005-07-09 Taku Yamanaka