DVIFonts gets a font according to its font name and font size in points. Font names include: cmr: Roman (5--10pt) cmmi: Math Italic (5--10pt) cmsy: Math Symbols (5--10pt) cmex: Math Extension (10pt) cmss: Sans serif (10pt) cmssqi: Sans serif quote italic (8pt) cmssi: Sans serif Italic (10pt)
| 28 | // cmssbx: Sans serif bold extended (10pt) |
| 29 | // cmdunh: Dunhill style (10pt) |
| 30 | type DVIFonts interface { |
| 31 | Get(string, float64) DVIFont |
| 32 | } |
| 33 | |
| 34 | // DVIFont draws a rune/glyph to the Pather at a position in millimeters. |
| 35 | type DVIFont interface { |