How to use 2-up mode for printing at Athena (NOTE: You must use the dvips converter to use this printing mode). (a) put the SIPB macros into your LaTeX TEXINPUTS variable (see Inessential LaTeX for details) (b) Include documentstyle "2up" in your document. You will probably want to use a PostScript font definition as well, such as "times" or "ncs" (otherwise the required TeX bitmap fonts will probably not be found at the proper resolution) (c1) If you want to print pages 2-up in the proper order to print doublesided and stapled together, add the following to your document prologue: \targetlayout{booklet2s} \special{papersize=11in,8.5in} WARNING: Do not use the "twosided" target layout option with booklet2s, it will screw up! Then use "dvips -h tumble file.dvi -o file.ps" to generate a PostScript file that will print doublesided in the proper order on the Athena printers. (c2) If you just want to print pages 2-up, add the following to your document prologue: \special{papersize=11in,8.5in} Use dvips normally (dvips file.dvi -o file.ps).