home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / lgrind 1.0.1 / possible-hacks / lgrind_patch2 next >
Encoding:
Text File  |  1993-05-08  |  2.0 KB  |  52 lines  |  [TEXT/MPS ]

  1. # This suggestion should fix a problem with the ' character if your TeX
  2. # fails to find some fonts.
  3. # Again, I haven't tried this.  (me==Fred Walsteijn)
  4.  
  5.  
  6.  
  7. From girou@hubble.circe.fr Mon May  3 12:36:36 1993
  8. Received: from hubble.circe.fr by ruunfs.fys.ruu.nl with SMTP id AA09797
  9.   (5.65b+/IDA-1.4.3 for walsteyn); Mon, 3 May 93 12:36:19 +0200
  10. Received: by hubble.circe.fr (AIX 3.2/UCB 5.64/4.03)
  11.           id AA31473; Mon, 3 May 1993 12:33:57 +0200
  12. Date: Mon, 3 May 1993 12:33:57 +0200
  13. From: girou@circe.fr (Denis Girou)
  14. Message-Id: <9305031033.AA31473@hubble.circe.fr>
  15. To: Fred Walsteijn <walsteyn@fys.ruu.nl>
  16. Subject: Re: lgrind
  17. Status: OR
  18.  
  19.  
  20.   Fred,
  21.  
  22.     My colleague explain to me what the real problem is.
  23.  
  24.   It's when the ss or tt font doesn't exist
  25. LaTeX Warning: No \tt typeface in this size, using \rm on input line 4.
  26. LaTeX Warning: No \sf typeface in this size, using \rm on input line 4.
  27.  
  28.   lgrind change the ' character (oblique quote) to the \' character (non oblique
  29. quote), which look better for the typography of a program. But the \'
  30. character work well in tt but is the fl ligature in rm (I don't remember in
  31. sf). So it's explain why we obtain the fl sequence!
  32.  
  33.   The solution in these cases is to manually (or by a script) change the \'
  34. sequence in ' or to change the lgrind.c source to have always a ' character
  35. (look not so good but work always: I choose to do that).
  36.  
  37. /*$  Modification Denis GIROU (CNRS/CIRCE - France) <girou@circe.fr> -  3 May. 1993 $*/
  38.    /*$" ",     "!",     "\\\"",  "\\#",   "\\$",   "\\%",   "\\&",   "\\'",$*/
  39.    " ",     "!",     "\\\"",  "\\#",   "\\$",   "\\%",   "\\&",   "'",
  40.  
  41.   Thanks for your help, Fred!
  42.  
  43. --
  44.  
  45. -----------------------------------------------------------
  46. Denis Girou (Centre National de la Recherche Scientifique |
  47.              Centre InterRegional de Calcul Electronique) |
  48. Batiment 506 - B.P. 167 - 91403 Orsay Cedex - France      |
  49. E-mail : girou@circe.fr - Tel.  : 33. 1. 69.82.41.52      |
  50. -----------------------------------------------------------
  51.  
  52.