home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / softsys / andrew / 1478 < prev    next >
Encoding:
Text File  |  1993-01-06  |  1.2 KB  |  40 lines

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!swrinde!gatech!usenet.ins.cwru.edu!agate!ucbvax!CS.CMU.EDU!Wilfred.Hansen
  2. From: Wilfred.Hansen@CS.CMU.EDU
  3. Newsgroups: comp.soft-sys.andrew
  4. Subject: Re: How do I set margins in EZ
  5. Message-ID: <sfGOkXy00gpmMzJ3gV@cs.cmu.edu>
  6. Date: 5 Jan 93 15:41:23 GMT
  7. References: <1993Jan3.183146.17471@panix.com>
  8. Sender: daemon@ucbvax.BERKELEY.EDU
  9. Distribution: world
  10. Organization: The Internet
  11. Lines: 27
  12.  
  13. The package $ANDREWDIR/lib/tmac/tmac.atk defines several options
  14. suitable for adjusting printed output layout.  For instance, the
  15. initialization routine defines:
  16.  
  17. .nr PS \n(.p    \" pointsize
  18. .nr VS \n(.v    \" linespacing
  19. .nr HM 1i    \" header margin
  20. .nr FM 1i    \" footer margin
  21. .nr LL \n(.l    \" line length
  22. .nr IN 36p    \" indent to allow outdenting headers
  23. .nr LT \n(.l-\n(INu    \" title length
  24.  
  25. All of these can be adjusted with formatnotes in your document.
  26. For instance, to set the top margin, put a line
  27.  
  28. .nr HM 1.5i
  29.  
  30. and mark it with the FormatNote style.
  31. You can also copy tmac.atk and modify it.  To use the modified
  32. version, add to your ~/preferences file a line like:
  33.  
  34. *.tmacfile: pathname/tmac.atk
  35.  
  36. substituting for <pathname> the path to your copy of tmac.atk.
  37.  
  38. Have fun,
  39. Fred Hansen
  40.