home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / dtp / easytext / docs / gdos.doc < prev   
Encoding:
Text File  |  1987-04-22  |  7.1 KB  |  197 lines

  1.                     
  2.  
  3.                     ==============
  4.                     FONTS and GDOS
  5.                     ==============
  6.  
  7.             (c) zzSoft 1989, all rights reserved 
  8.  
  9.  
  10.  
  11.  
  12. For use with the ATARI ST program EASY TEXT+.
  13.  
  14. Companion file to the EASY TEXT+ tutorial.
  15.  
  16.  
  17. This file details some of the tecniques and methods of using GDOS 
  18. fonts, and the ASSIGN.SYS file.
  19.  
  20. Please note that your EASY TEXT+ disk is directly usuable. You do 
  21. not need to know any of the following information in order to use 
  22. EASY TEXT+ properly. This file is for the benfit of people who 
  23. wish to alter their ASSIGN.SYS file; use different fonts; use a 
  24. different printer driver etc.
  25.  
  26.  
  27.      It is essential that GDOS.PRG (in the folder called AUTO)
  28.      is in Drive A at program boot up.  If it is not a warning  
  29.      message will be issued by EASY TEXT+ informing you that 
  30.      you must boot with GDOS in an AUTO folder. You should not 
  31.      directly run GDOS.PRG by double- clicking on it.
  32.  
  33.      Hard disk users may have configured their disk to auto boot 
  34.      from there. This is ok.
  35.  
  36.      Also it is essential that the ASSIGN.SYS file is on the same 
  37.      disk as the GDOS.PRG.  The ASSIGN.SYS file lets you specify
  38.      what GDOS fonts can be loaded and used by EASY TEXT+.  This 
  39.      is not peculiar to EASY TEXT+, it is the usual method used by 
  40.      DTP and art programs, eg Degas Elite.
  41.  
  42.      You also need the FONTS folder on the same disk, or on the 
  43.      disk pointed to by the path statement at the head of the 
  44.      ASSIGN.SYS file. The fonts folder contains the actual fonts 
  45.      used by EASY TEXT+. The FONTS folder contains GDOS screen 
  46.      fonts, printer fonts, and the printer driver, eg FX80.SYS.
  47.  
  48.                     ----------------
  49.      If  GDOS  is successfully installed at boot-up then a message  
  50. should come onto your screen (top left-hand corner) for a short 
  51. period of time before you are returned to the ST's desktop. The 
  52. message should read:
  53.  
  54.        ATARI GDOS Ver. 1.1 resident. 
  55.  
  56. If, however, GDOS was not installed other messages will appear
  57. briefly on the screen,  for example telling you that the 
  58. ASSIGN.SYS  file contains an illegal workstation, ETC. You must 
  59. correct this problem before you can use EASY TEXT+.
  60.                     ---------------
  61.  
  62.      
  63.      To  modify the ASSIGN.SYS file so that diferent fonts may be 
  64.      loaded other than the ones already specified in the file, you 
  65.      have to modify the file. This is acheived by loading the 
  66.      ASSIGN.SYS file  into First Word and then turning off Word 
  67.      Processing (WP Mode - top of the EDIT menu). The file can 
  68.      then be modified to your purposes.
  69.  
  70.      To change the printer driver you neeed only place the 
  71.      appropriate driver in the FONTS folder and change the name 
  72.      of the driver at 21, in the ASSIGN.SYS file.
  73.  
  74.      As an example an ASSIGN.SYS file could contain the following 
  75.      text:
  76.      
  77.  
  78. path=A:\FONTS
  79. ;
  80. 01p  screen.sys          ;Default screen 
  81. ;
  82. 02p  screen.sys          ;Low-resolution screen
  83. ;
  84. 03p  screen.sys          ;Medium-resolution screen    
  85. ;
  86. 04p  screen.sys          ;High-resolution screen
  87. ;
  88. COURIE10.FNT
  89. COURIE14.FNT
  90. COURIE18.FNT
  91. COURIE28.FNT
  92. COURIE36.FNT
  93. ;
  94. 21 FX80.SYS         ; EPSON FX80 and compatibles
  95. EPSON_10.FNT        
  96. EPSON_14.FNT
  97. EPSON_18.FNT
  98. EPSON_28.FNT
  99. EPSON_36.FNT
  100.  
  101.      Note that this file does not specify any med res screen 
  102.      fonts, therefore no GDOS fonts will be available for use in 
  103.      medium reolution. 
  104.  
  105.      Do not leave a blank space in the ASSIGN.SYS file between the 
  106.      font names as this will cause the remainder of font names  in 
  107.      the file to be ignored. Eg do not do this:
  108.  
  109.      COMPUT16.FNT
  110.      COMPUT18.FNT
  111.      
  112.      COMPUT28.FNT        
  113.      
  114.      You  should  not give any GDOS fonts a name starting  with  a 
  115.      number, eg 42NDST.FNT. This will cause GDOS not to be installed.
  116.      In all events check your ASSIGN.SYS file carefully.
  117.  
  118.      To  use the fonts you want substitute the new font names  for 
  119.      the  present ones,  or alternatively include your new  choice 
  120.      of fonts with the present ones.  Then save the new ASSIGN.SYS 
  121.      file and place on your working disk with the other files  and 
  122.      EASY TEXT program. Only have one ASSIGN.SYS file on your copy 
  123.      working  disk.
  124.  
  125.      Replace the fonts in the FONTS folder by the fonts specified 
  126.      in the ASSIGN.SYS file.
  127.  
  128.      If you want to keep your FONTS folder on another disk you 
  129.      should  alter the path statement in the ASSIGN.SYS file eg
  130.      Path = C:\FONTS
  131.  
  132.      You may call the folder what you will, so long as the name 
  133.      in the ASSIGN.SYS file corresponds with it.
  134.  
  135.      Note that the ';' used in an ASSIGN.SYS file is there so that 
  136.      comments  can be  placed in the file.  Any text on the same line
  137.      as  a  ';' and  placed  after  it will be  ignored  by  GDOS, 
  138.      which  is occasionally useful.  
  139.  
  140.  
  141.      To Summarise
  142.  
  143.      (a) You need  ASSIGN.SYS, the AUTO folder containing GDOS.PRG,
  144.      on your boot disk, and the FONTS folder on the disk pointed 
  145.      to by the Path statement in the ASSIGN.SYS file.
  146.   
  147.         
  148. FONTS                
  149.      
  150.      Note that all fonts are loaded at start-up if there is enough 
  151.      RAM,  If there is not enough RAM to accommodate all the fonts 
  152.      NO   fonts will be  loaded at all OR only some.  This is  why 
  153.      the PARAMETERS selection in the OPTIONS menu is so useful. It 
  154.      allows you to determine exactly how many fonts to place in an 
  155.      ASSIGN.SYS file.
  156.  
  157.      It  is possible to have many different ASSIGN.SYS  files,  by 
  158.      naming  them  slightly differently from  ASSIGN.SYS.  So  you 
  159.      could  have 4 different ASSIGN.SYS files  called  ASSIGN.SY1, 
  160.      ASSIGN.SY2,  ASSIGN.SY3 and the one you are using at start-up 
  161.      ASSIGN.SYS. By having different combinations of fonts in each 
  162.      ASSIGN.SYS file it is possible at start-up time by  correctly 
  163.      renaming  any one of the other three files to ASSIGN.SYS  and 
  164.      renaming the other now unwanted ASSIGN.SYS to some other name  
  165.      to load different font styles. 
  166.  
  167.      -------------------------------------------------------------
  168.      Always  reboot the computer if you change the ASSIGN.SYS FILE, 
  169.      or use a different printer driver.
  170.      ------------------------------------------------------------- 
  171.  
  172.      Selecting  a font size that is not available results in the 
  173.      next smaller size being used.
  174.  
  175.      Note that you must have the correct printer fonts for the 
  176.      EASY TEXT+ print program to operate correctly. Having only 
  177.      screen fonts is not sufficient, although it is perfectly 
  178.      possible to use different printer fonts when printing to 
  179.      get different print styles.
  180.  
  181.      The software allows you to have a screen font half the 
  182.      printer font size. So, if you have a screen font 18 points 
  183.      high it is only necessary to have a printer font 9 points 
  184.      high to reproduce the screen font on your printer as the 
  185.      print program will double-up the printer font for you. This 
  186.      useful feature saves time and space.
  187.  
  188. * end of file
  189.  
  190.  
  191.  
  192.  
  193.   
  194.  
  195.  
  196.  
  197.