home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / d / elvis / Docs / refont < prev    next >
Encoding:
Text File  |  1989-12-31  |  1.3 KB  |  37 lines

  1. The refont program accepts input which may contain any common method for
  2. describing fonts.  It outputs a version of the input which uses one method
  3. of your choice.
  4.  
  5.               +----------------------------------------------+
  6.           |              *** WARNING ***             |
  7.           |                             |
  8.           |    This program has not been thoroughly tested. |
  9.           |    The code is ugly. I'm not proud of this one. |
  10.               +----------------------------------------------+
  11.  
  12. The invocation signature of refont is...
  13.  
  14.     refont [-bcdefx] [files]...
  15.  
  16. ... where "-bcdefx" represents *one* of the following...
  17.     -b    use overtyping, implemented by backspacing
  18.     -c    use overtyping, implemented with carriage returns
  19.     -d    use nroff style "dot" commands (doesn't work very well yet)
  20.     -e    use Epson-compatible printer escape codes
  21.     -f    use the "backslash-f" notation
  22.     -x    strip all formatting information
  23.  
  24. If the "files" list is empty, then refont reads from stdin, unless stdin has
  25. not been redirected.  If more than one file is named, then formfeeds are
  26. inserted between them.
  27.  
  28. If you have an Epson-compatible printer, then you can use the following
  29. command to print a file (here, the file "foo") which contains some other
  30. style of formatting notation:
  31.  
  32.     $ refont -e foo | lpr
  33.  
  34. For other printers, try one of the overtyping notations:
  35.  
  36.     $ refont -c foo | lpr
  37.