grammatical_rule.xsd
来自「XML课件非常好的东西 如果你不了解XML看看非常有用」· XSD 代码 · 共 23 行
XSD
23 行
<?xml version = "1.0"?>
<Schema name = "Grammatical_Rule"
xmlns = "urn:schemas-microsoft-com:xml-data"
xmlns:dt = "urn:schemas-microsoft-com:datatypes">
<ElementType name = "Paragraph" content = "textOnly" dt:type = "string" />
<ElementType name = "Subheading" content = "textOnly" dt:type = "string" />
<ElementType name = "Abstract" content = "textOnly" dt:type = "string" />
<ElementType name = "Heading" content = "textOnly" dt:type = "string" />
<ElementType name = "Chapter" content = "eltOnly" order = "seq">
<element type = "heading" minOccurs = "1" maxOccurs = "1" />
<group order = "one">
<element type = "Subheading" minOccurs = "1" maxOccurs = "1" />
<element type = "Abstract" minOccurs = "1" maxOccurs = "1" />
</group>
<element type = "Paragraph" minOccurs = "1" maxOccurs = "*" />
</ElementType>
<ElementType name = "Book" content = "eltOnly" >
<element type = "Chapter" minOccurs = "1" maxOccurs = "*" />
</ElementType>
</Schema>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?