slideshow2.dtd

来自「xml教程,Understanding XML and the Java XML」· DTD 代码 · 共 32 行

DTD
32
字号
<?xml version='1.0' encoding='us-ascii'?><!--    DTD for a simple "slide show".--><!ELEMENT slideshow (slide+)><!ATTLIST slideshow             title    CDATA    #REQUIRED            date     CDATA    #IMPLIED            author   CDATA    "unknown"><!ELEMENT slide (image?, title?, item*)><!ATTLIST slide             type   (tech | exec | all) #IMPLIED><!-- Defines the %inline; declaration --><!ENTITY % xhtml SYSTEM "xhtml.dtd">%xhtml;<!ELEMENT title (%inline;)*><!ELEMENT item (%inline; | item)* ><!ELEMENT image EMPTY><!ATTLIST image             alt    CDATA    #IMPLIED            src    CDATA    #REQUIRED            type   CDATA    "image/gif">

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?