| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- font-mappings =
- ## Mapping table from logical fonts and character sets to physical fonts.
- element font-mappings {
- font-table*
- }
- font-table =
- ## Font mapping table
- element font-table {
- aliases*,
- logical-font*
- }
- aliases =
- ## Logical font aliases
- element aliases {
- alias*
- }
- alias =
- ## Logical font alias
- element alias {
- ## Alias name
- attribute name { text }?,
- ## Logical font name
- text
- }
- logical-font =
- ## Logical font mapping
- element logical-font {
- ## Logical font name
- attribute name { text }?,
- physical-font*
- }
- physical-font =
- ## Physical font
- element physical-font {
- ## Character set name
- attribute char-set { text | "default" }?,
- font-face,
- baseline-shift?,
- override-size?
- }
- font-face =
- ## Physical font name
- element font-face { text }
- baseline-shift =
- ## Baseline shift adjustment
- element baseline-shift { text }
- override-size =
- ## Font size adjustment
- element override-size { text }
- start = font-mappings
|