home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / robot-pd / 12400.ZIP / 12400B.DSK / readme.man < prev    next >
Text File  |  1998-04-30  |  2KB  |  51 lines

  1. NOTES FOR TASWORD PRINTING OF MANUAL FILES.
  2.  
  3. Printer control characters are:-
  4. C - Condensed
  5. D - Double Strike
  6. G - Superscript
  7. H - Subscript
  8. S - Output two spaces. I use this to overcome the loss  of
  9. justification caused by PCCs in a line.  Simply  type  the
  10. "S" PCC (in upper or  lower  case)  instead  of  a  normal
  11. space, elsewhere in the line.  This  should  be  done  for
  12. EVERY other PCC  in  the  line.  As  an  example,  if  you
  13. underline a word in the middle of a line, then you  should
  14. use two "S" PCCs, to restore justification.
  15. I - Italics
  16. Q - Used to print "hash". The upper case PCC  selects  the
  17. American font (Language 0). The lower case PCC selects the
  18. English font (Language 3). Hence the sequence  "Q#q"  will
  19. print a hash, assuming that your printer defaults  to  the
  20. English Font.
  21.     The codes for PCC "Q" are:-
  22.                   "Q" : 27 83 0
  23.                   "q" : 27 82 3
  24.     I have programmed  [SHIFT  3]  to  produce  the  above
  25. sequence by adding the following  commands  to  the  BASIC
  26. loader program:-
  27.          KEY 141,CHR$(185)+"Q#"+CHR$(185)+"q
  28.          KEY DEF 57,1,51,141,0
  29.  
  30. If you don't have TASWORD then bear in mind that PCCs  are
  31. stored as characters with  ASCII  values  above  127.  The
  32. following program will remove all PCCs  from  a  file  and
  33. send the result to the printer:-
  34.  
  35. OPENIN <file.name>
  36. WHILE NOT EOF
  37. LINE INPUT#9,k$
  38. FOR a%=1 TO LEN(k$):IF ASC(k$)>127 THEN k$=LEFT$(k$,a%-1)+MID$(k$,a%+1)
  39. NEXT
  40. '* k$ is now free of PCCs
  41. ?#8,k$
  42. WEND
  43. CLOSEIN
  44.  
  45. Or RUN the TAS-ASC program.
  46. MANUAL FILES.
  47.  
  48. Printer control characters are:-
  49. C - Condensed
  50. D - Double Strike
  51. G - Superscri