Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

hyphenation.dtd 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="US-ASCII"?>
  2. <!ELEMENT hyphenation-info (hyphen-char?, hyphen-min?,
  3. classes, exceptions?, patterns)>
  4. <!-- Hyphen character to be used in the exception list as shortcut for
  5. <hyphen pre-break="-"/>. Defaults to '-'
  6. -->
  7. <!ELEMENT hyphen-char EMPTY>
  8. <!ATTLIST hyphen-char value CDATA #REQUIRED>
  9. <!-- Default minimun length in characters of hyphenated word fragments
  10. before and after the line break. For some languages this is not
  11. only for aesthetic purposes, wrong hyphens may be generated if this
  12. is not accounted for.
  13. -->
  14. <!ELEMENT hyphen-min EMPTY>
  15. <!ATTLIST hyphen-min before CDATA #REQUIRED>
  16. <!ATTLIST hyphen-min after CDATA #REQUIRED>
  17. <!-- Character equivalent classes: space separated list of character groups, all
  18. characters in a group are to be treated equivalent as far as
  19. the hyphenation algorithm is concerned. The first character in a group
  20. is the group's equivalent character. Patterns should only contain
  21. first characters. It also defines word characters, i.e. a word that
  22. contains characters not present in any of the classes is not hyphenated.
  23. -->
  24. <!ELEMENT classes (#PCDATA)>
  25. <!-- Hyphenation exceptions: space separated list of hyphenated words.
  26. A hyphen is indicated by the hyphen tag, but you can use the
  27. hyphen-char defined previously as shortcut. This is in cases
  28. when the algorithm procedure finds wrong hyphens or you want
  29. to provide your own hyphenation for some words.
  30. -->
  31. <!ELEMENT exceptions (#PCDATA|hyphen)* >
  32. <!-- The hyphenation patterns, space separated. A pattern is made of 'equivalent'
  33. characters as described before, between any two word characters a digit
  34. in the range 0 to 9 may be specified. The absence of a digit is equivalent
  35. to zero. The '.' character is reserved to indicate begining or ending
  36. of words. -->
  37. <!ELEMENT patterns (#PCDATA)>
  38. <!-- A "full hyphen" equivalent to TeX's \discretionary
  39. with pre-break, post-break and no-break attributes.
  40. To be used in the exceptions list, the hyphen character is not
  41. automatically added -->
  42. <!ELEMENT hyphen EMPTY>
  43. <!ATTLIST hyphen pre CDATA #IMPLIED>
  44. <!ATTLIST hyphen no CDATA #IMPLIED>
  45. <!ATTLIST hyphen post CDATA #IMPLIED>