home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / print / 2col30.zip / DEMO2COL.BAT < prev    next >
DOS Batch File  |  1992-04-10  |  3KB  |  63 lines

  1. @echo off
  2. if "%1"=="9" goto 9
  3. if "%1"=="24" goto 24
  4. echo.
  5. echo To run this demo on a 9-pin printer type:  DEMO2COL 9 (enter)
  6. echo.
  7. echo To run this demo on a 24-pin (LQ type) printer type:DEMO2COL 24 (enter)
  8. echo.
  9. goto end
  10. :9
  11. echo.
  12. echo Some of the printing modes demonstrated are available only to registered users.
  13. echo Various options can be combined on the command line, if separated by spaces.
  14. echo.
  15. echo 2col prints with its default settings: 2COL 2COL.DOC >prn
  16. 2COL 2COL.DOC -K -F2
  17. echo Automargin creates an 8 space left margin: 2COL 2COL.DOC -U8 >prn
  18. echo This feature is available to registered users only.>prn
  19. 2COL 2COL.DOC -K -F1 -U8
  20. echo Maximum # of lines/page with full size type is 102: 2COL 2COL.DOC -L102 >prn
  21. 2COL 2COL.DOC -K -F2 -L102
  22. echo For more than 102 lines/page 2col uses small type: 2COL 2COL.DOC -L180>prn
  23. 2COL 2COL.DOC -K -F2 -L180
  24. echo To retain all blank lines in original document type: 2COL 2COL.DOC -C66>prn
  25. 2COL 2COL.DOC -K -F2 -C66
  26. echo Original source pages can be delimited by typing:2COL 2COL.DOC -D>prn
  27. echo Pages can be numbered at the bottom by typing:2COL 2COL.DOC -N>prn
  28. 2COL 2COL.DOC -K -F1 -D -N
  29. echo You can print exactly two pages/column by typing:2COL 2COL.DOC -X2>prn
  30. echo This feature is available to registered users only.>prn
  31. 2COL 2COL.DOC -K -F1 -X2
  32. echo To print at 17 char/inch,use a columnwidth less than 69: 2COL 2COL.DOC -W68>prn
  33. 2COL 2COL.DOC -K -F2 -W68
  34.  
  35. goto end
  36. :24
  37. echo.
  38. echo Some of the printing modes demonstrated are available only to registered users.
  39. echo Various options can be combined on the command line, if separated by spaces.
  40. echo When using a 24-pin printer the -Q option must always be used.
  41. echo.
  42. echo 2col prints with its default settings: 2COL 2COL.DOC -Q >prn
  43. 2COL 2COL.DOC -K -F1 -Q
  44. echo Automargin creates an 8 space left margin: 2COL 2COL.DOC -U8 -Q >prn
  45. echo This feature is available to registered users only.>prn
  46. 2COL 2COL.DOC -K -F1 -U8 -Q
  47. echo Maximum # of lines/page with full size type is 102: 2COL 2COL.DOC -L102 -Q >prn
  48. 2COL 2COL.DOC -K -F2 -L102 -Q
  49. echo For more than 102 lines/page 2col uses small type: 2COL 2COL.DOC -L180 -Q>prn
  50. 2COL 2COL.DOC -K -F2 -L180 -Q
  51. echo To retain all blank lines in original document type: 2COL 2COL.DOC -C66>prn
  52. 2COL 2COL.DOC -K -F2 -C66 -Q
  53. echo Original source pages can be delimited by typing:2COL 2COL.DOC -D>prn
  54. echo Pages can be numbered at the bottom by typing:2COL 2COL.DOC -N>prn
  55. 2COL 2COL.DOC -K -F1 -D -N -Q
  56. echo You can print exactly two pages/column by typing:2COL 2COL.DOC -X2>prn
  57. echo This feature is available to registered users only.>prn
  58. 2COL 2COL.DOC -K -F1 -X2 -Q
  59. echo To print at 17 char/inch,use a columnwidth less than 69: 2COL 2COL.DOC -W68>prn
  60. 2COL 2COL.DOC -K -F2 -W68 -Q
  61.  
  62. :end
  63.