home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / graphics / 8967 < prev    next >
Encoding:
Internet Message Format  |  1992-08-19  |  2.9 KB

  1. Path: sparky!uunet!ogicse!das-news.harvard.edu!cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!ORION.FAC.CS.CMU.EDU!phdye
  2. From: phdye+@cs.cmu.edu (Philip Dye)
  3. Newsgroups: comp.graphics,brown.graphics
  4. Subject: Re: Is there a way to get Greek fonts into ``idraw''?
  5. Message-ID: <phdye.714211922@ORION.FAC.CS.CMU.EDU>
  6. Date: 19 Aug 92 08:12:02 GMT
  7. Article-I.D.: ORION.phdye.714211922
  8. References: <1992Aug18.215732.26337@cs.brown.edu>
  9. Sender: news@cs.cmu.edu (Usenet News System)
  10. Organization: School of Computer Science, Carnegie Mellon
  11. Lines: 48
  12. Nntp-Posting-Host: orion.fac.cs.cmu.edu
  13.  
  14. aba@lems22lems.brown.edu (Alan B. Arehart) writes:
  15.  
  16. >Does anyone know how Greek characters can be brought into idraw?
  17. >I am trying to draw figures for a paper and am frustrated by
  18. >the lack of support for using Greek letters in the figures in 
  19. >the program idraw.
  20. >    -Alan Arehart
  21. >     aba@lems.brown.edu
  22.  
  23. Idraw (like all x applications) uses the 'X Logical Font Description' for
  24. specification of screen fonts.  Using this specification one includes enough
  25. information for the X server to locate a font.  To get a list of the
  26. available fonts from a given server use the 'xlsfont' command.  So to
  27. determine a specification for the Adobe Symbol one might use the following:
  28.  
  29.   % xlsfonts | grep -i symbol
  30.  
  31.   -adobe-symbol-medium-r-normal--10-100-75-75-p-61-adobe-fontspecific
  32.   -adobe-symbol-medium-r-normal--11-80-100-100-p-61-adobe-fontspecific
  33.   -adobe-symbol-medium-r-normal--12-120-75-75-p-74-adobe-fontspecific
  34.   -adobe-symbol-medium-r-normal--14-100-100-100-p-85-adobe-fontspecific
  35.   -adobe-symbol-medium-r-normal--14-140-75-75-p-85-adobe-fontspecific
  36.   -adobe-symbol-medium-r-normal--17-120-100-100-p-95-adobe-fontspecific
  37.   -adobe-symbol-medium-r-normal--18-180-75-75-p-107-adobe-fontspecific
  38.   -adobe-symbol-medium-r-normal--20-140-100-100-p-107-adobe-fontspecific
  39.   -adobe-symbol-medium-r-normal--24-240-75-75-p-142-adobe-fontspecific
  40.   -adobe-symbol-medium-r-normal--25-180-100-100-p-142-adobe-fontspecific
  41.   -adobe-symbol-medium-r-normal--34-240-100-100-p-191-adobe-fontspecific
  42.   -adobe-symbol-medium-r-normal--8-80-75-75-p-51-adobe-fontspecific
  43.  
  44. Each of the above specifies a specific X11 screen font.  As much of the
  45. information is common, a simpler specification will still result in precise
  46. match.  For example, '*-symbol-medium-*-240-*' uniquely identifies a font.
  47. If the given pattern does not uniquely identify a font, the first available
  48. font, as listed by the xlsfonts program, is used.
  49.  
  50. In addition, idraw requires that one specify a postscript font and point
  51. size to associate with the screen font.
  52.  
  53. Adding the following to your X11 defaults (or resources) will enable for
  54. symbol font items in idraw.
  55.  
  56. idraw*font12:         *-symbol-medium-r-*-100-*      Symbol             10
  57. idraw*font13:         *-symbol-medium-r-*-120-*      Symbol             12
  58. idraw*font14:         *-symbol-medium-r-*-140-*      Symbol             14
  59. idraw*font15:         *-symbol-medium-r-*-240-*      Symbol             24
  60.  
  61. Philip
  62.