⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 document-v11.dtd

📁 java 读写word excel ppt
💻 DTD
📖 第 1 页 / 共 2 页
字号:
<!-- =============================================================== --><!-- Content definitions --><!-- =============================================================== --><!ENTITY % local.inline ""><!ENTITY % link-content.mix "%text;|%markup;|%special-inline; %local.inline;"><!ENTITY % content.mix "%link-content.mix;|%links;">    <!-- ==================================================== -->    <!-- Phrase Markup -->    <!-- ==================================================== -->    <!-- Strong (typically bold) -->    <!ELEMENT strong (%text;|code)*>    <!ATTLIST strong %common.att;>    <!-- Emphasis (typically italic) -->    <!ELEMENT em (%text;|code)*>    <!ATTLIST em %common.att;>        <!-- Code (typically monospaced) -->    <!ELEMENT code (%text;)>    <!ATTLIST code %common.att;>    <!-- Superscript (typically smaller and higher) -->    <!ELEMENT sup (%text;)>    <!ATTLIST sup %common.att;>    <!-- Subscript (typically smaller and lower) -->    <!ELEMENT sub (%text;)>    <!ATTLIST sub %common.att;>    <!-- ==================================================== -->    <!-- Hypertextual Links -->    <!-- ==================================================== -->    <!-- hyperlink (equivalent of <a ...>) -->    <!ELEMENT link (%link-content.mix;)*>    <!ATTLIST link %common.att;                   %link.att;>    <!-- windows-replacing link (equivalent of <a ... target="_top">) -->    <!ELEMENT jump (%link-content.mix;)*>    <!ATTLIST jump %common.att;                   %link.att;>    <!-- window-forking link (equivalent of <a ... target="_new">) -->    <!ELEMENT fork (%link-content.mix;)*>    <!ATTLIST fork %common.att;                   %link.att;>    <!-- ==================================================== -->    <!-- Specials -->    <!-- ==================================================== -->    <!-- Breakline Object (typically forces line break) -->    <!ELEMENT br EMPTY>    <!ATTLIST br %common.att;>    <!-- Image Object (typically an inlined image) -->    <!ELEMENT img EMPTY>    <!ATTLIST img src    CDATA  #REQUIRED                  alt    CDATA  #REQUIRED                  height CDATA  #IMPLIED                  width  CDATA  #IMPLIED                  usemap CDATA  #IMPLIED                  ismap  (ismap) #IMPLIED                  %common.att;>    <!-- Image Icon (typically an inlined image placed as graphical item) -->    <!ELEMENT icon EMPTY>    <!ATTLIST icon src    CDATA  #REQUIRED                   alt    CDATA  #REQUIRED                   height CDATA  #IMPLIED                   width  CDATA  #IMPLIED                   %common.att;><!-- =============================================================== --><!-- Blocks definitions --><!-- =============================================================== --><!ENTITY % local.blocks ""><!ENTITY % blocks "%paragraphs;|%tables;|%lists;|%special-blocks; %local.blocks;">    <!-- ==================================================== -->    <!-- Paragraphs -->    <!-- ==================================================== -->    <!-- Text Paragraph (normally vertically space delimited) -->    <!ELEMENT p (%content.mix;)*>    <!ATTLIST p %common.att;>    <!-- Source Paragraph (normally space is preserved) -->    <!ELEMENT source (%content.mix;)*>    <!ATTLIST source %common.att;                     %xmlspace.att;>    <!-- Note Paragraph (normally shown encapsulated) -->    <!ELEMENT note (%content.mix;)*>    <!ATTLIST note %common.att;>    <!-- Warning Paragraph (normally shown with eye-catching colors) -->    <!ELEMENT warning (%content.mix;)*>    <!ATTLIST warning %common.att;>    <!-- Fixme Paragraph (normally not shown) -->    <!ELEMENT fixme (%content.mix;)*>    <!ATTLIST fixme author CDATA #REQUIRED                    %common.att;>    <!-- ==================================================== -->    <!-- Tables -->    <!-- ==================================================== -->    <!-- Attributes that indicate the spanning of the table cell -->    <!ENTITY % cell.span         'colspan CDATA "1"         rowspan CDATA "1"'>    <!-- Table element -->    <!ELEMENT table (caption?, tr+)>    <!ATTLIST table %common.att;>        <!-- The table title -->        <!ELEMENT caption (%content.mix;)*>        <!ATTLIST caption %common.att;>        <!-- The table row element -->        <!ELEMENT tr (th|td)+>        <!ATTLIST tr %common.att;>            <!-- The table row header element -->            <!ELEMENT th (%content.mix;)*>            <!ATTLIST th %common.att;                         %cell.span;>            <!-- The table row description element -->            <!ELEMENT td (%content.mix;)*>            <!ATTLIST td %common.att;                         %cell.span;>    <!-- ==================================================== -->    <!-- Lists -->    <!-- ==================================================== -->    <!-- List item -->    <!ELEMENT li (%content.mix;|%lists;)*>    <!ATTLIST li %common.att;>        <!-- Unordered list (typically bulleted) -->    <!ELEMENT ul (li|%lists;)+>    <!--    spacing attribute:            Use "normal" to get normal vertical spacing for items;            use "compact" to get less spacing.  The default is dependent            on the stylesheet. -->    <!ATTLIST ul            %common.att;            spacing         (normal|compact)        #IMPLIED>    <!-- Ordered list (typically numbered) -->    <!ELEMENT ol (li|%lists;)+>    <!--    spacing attribute:            Use "normal" to get normal vertical spacing for items;            use "compact" to get less spacing.  The default is dependent            on the stylesheet. -->    <!ATTLIST ol            %common.att;            spacing         (normal|compact)        #IMPLIED>    <!-- Definition list (typically two-column) -->    <!ELEMENT dl (dt,dd)+>    <!ATTLIST dl %common.att;>        <!-- Definition term -->        <!ELEMENT dt (%content.mix;)*>        <!ATTLIST dt %common.att;>        <!-- Definition description -->        <!ELEMENT dd (%content.mix;)*>        <!ATTLIST dd %common.att;>    <!-- ==================================================== -->    <!-- Special Blocks -->    <!-- ==================================================== -->    <!-- Image Block (typically a separated and centered image) -->    <!ELEMENT figure EMPTY>    <!ATTLIST figure src    CDATA  #REQUIRED                     alt    CDATA  #REQUIRED                     height CDATA  #IMPLIED                     width  CDATA  #IMPLIED                     usemap CDATA  #IMPLIED                     ismap  (ismap) #IMPLIED                     %common.att;>    <!-- anchor point (equivalent of <a name="...">, typically not rendered) -->    <!ELEMENT anchor EMPTY>    <!ATTLIST anchor %common-idreq.att;><!-- =============================================================== --><!-- Document --><!-- =============================================================== --><!ELEMENT document (header?, body, footer?)><!ATTLIST document %common.att;>    <!-- ==================================================== -->    <!-- Header -->    <!-- ==================================================== -->    <!ENTITY % local.headers "">    <!ELEMENT header (title, subtitle?, version?, type?, authors,                      notice*, abstract? %local.headers;)>    <!ATTLIST header %common.att;>    <!ELEMENT title (%text;)>    <!ATTLIST title %common.att;>    <!ELEMENT subtitle (%text;)>    <!ATTLIST subtitle %common.att;>    <!ELEMENT version (%text;)>    <!ATTLIST version %common.att;>    <!ELEMENT type (%text;)>    <!ATTLIST type %common.att;>    <!ELEMENT authors (person+)>    <!ATTLIST authors %common.att;>    <!ELEMENT notice (%content.mix;)*>    <!ATTLIST notice %common.att;>    <!ELEMENT abstract (%content.mix;)*>    <!ATTLIST abstract %common.att;>    <!-- ==================================================== -->    <!-- Body -->    <!-- ==================================================== -->    <!ENTITY % local.sections "">    <!ENTITY % sections "section %local.sections;">    <!ELEMENT body (%sections;|%blocks;)+>    <!ATTLIST body %common.att;>    <!ELEMENT section (%sections;|%blocks;)*>    <!ATTLIST section %title.att; %common.att;>    <!-- ==================================================== -->    <!-- Footer -->    <!-- ==================================================== -->    <!ENTITY % local.footers "">    <!ELEMENT footer (legal %local.footers;)>        <!ELEMENT legal (%content.mix;)*>        <!ATTLIST legal %common.att;><!-- =============================================================== --><!-- End of DTD --><!-- =============================================================== -->

⌨️ 快捷键说明

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