Advertisement
Guest User

Postscript program Type Setting

a guest
Jun 13th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. %!PS
  2.  
  3.  
  4. % author codework10101@gmail.com
  5. % 06/13/2019
  6.  
  7. % This program produces Definition XII. of Euclid's Elements, that is the definition of acute angle, as shown in
  8. % "BYRNE'S EUCLID THE FIRST SIX BOOKS OF THE ELEMENTS OF EUCLID WITH COLOURED DIAGRAMS AND SYMBOLS" (see
  9. % found here https://ia800204.us.archive.org/14/items/firstsixbooksofe00eucl/firstsixbooksofe00eucl.pdf
  10. % pdf-page 19 (23 of 306) or book-page xix).
  11.  
  12.  
  13.  
  14.  
  15. /inch { 72 mul } def
  16. /cn   { 255 div } def
  17.  
  18.  
  19.  
  20.  
  21. % BYRNE'S Color Palette
  22. /dark-blue-slate {50 cn 93 cn 134 cn} def % blue
  23. /peru  {219 cn 101 cn  74 cn} def         % red
  24. /beige {242 cn 239 cn 217 cn} def         % page (off-white)
  25. /khaki {236 cn 226 cn  92 cn} def         % yellow
  26.  
  27.  
  28.  
  29.  
  30. % PAPER
  31. beige setrgbcolor
  32. newpath
  33. 0 0 moveto
  34.  8.5 inch   0      rlineto
  35.    0       11 inch rlineto
  36. -8.5 inch   0      rlineto
  37.    0      -11 inch rlineto
  38. closepath
  39. fill
  40.  
  41.  
  42.  
  43.  
  44. % FIGURE
  45. 3.25 inch  4.5 inch translate % location on page
  46.  
  47.  
  48. % ANGLE
  49. %  - blue angle sector 45 deg
  50. dark-blue-slate setrgbcolor
  51. 0 0 moveto
  52. 0 0 0.5 inch 0 45 arc
  53. fill
  54.  
  55. %  - yellow line
  56. 3 setlinewidth
  57. khaki setrgbcolor
  58. 0 0 moveto
  59. 2 sqrt 2 div inch  dup lineto
  60. stroke
  61.  
  62. %  - red line
  63. peru setrgbcolor
  64. 0 0 moveto
  65. 1 inch 0  lineto
  66. stroke
  67.  
  68.  
  69.  
  70.  
  71. % TEXT
  72. 0 0 0 setrgbcolor
  73. /line_height 14 def
  74.  
  75. %  - text heading
  76. 1.21 inch 1 inch 2 line_height mul add moveto
  77. % Note BRYNE uses "Caslon" font (see https://en.wikipedia.org/wiki/Caslon)
  78. /Helvetica-Bold findfont 14 scalefont setfont
  79. (XII.) show
  80.  
  81. %  - text body
  82. /Helvetica findfont 14 scalefont setfont
  83.  
  84. -1 inch 1 inch 1 line_height mul add moveto
  85. (An acute angle is an angle less than a\nright angle.) show
  86.  
  87. -1 inch 1 inch 0 line_height mul add moveto
  88. (right angle.) show
  89.  
  90.  
  91.  
  92.  
  93. %showpage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement