1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
|
<!DOCTYPE html>
<html lang="en" class="Internet-Draft">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>Put Your Internet Draft Title Here</title>
<meta content="Elwyn Davies" name="author">
<meta content="Quintin Zhao" name="author">
<meta content="
Insert an abstract: MANDATORY. This template is for creating an
Internet Draft.
" name="description">
<meta content="xml2rfc 3.18.0" name="generator">
<meta content="template" name="keyword">
<meta content="draft-ietf-xml2rfc-template-05" name="ietf.draft">
<link href="tests/input/draft-template.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<link href="xml2rfc.css" rel="stylesheet">
<link href="rfc-local.css" rel="stylesheet" type="text/css">
</head>
<body class="xml2rfc">
<script src="metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">Internet-Draft</td>
<td class="center">Abbreviated Title</td>
<td class="right">March 2009</td>
</tr></thead>
<tfoot><tr>
<td class="left">Davies & Zhao</td>
<td class="center">Expires September 2, 2009</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-workgroup">Workgroup:</dt>
<dd class="workgroup">Internet Engineering Task Force</dd>
<dt class="label-internet-draft">Internet-Draft:</dt>
<dd class="internet-draft">draft-ietf-xml2rfc-template-05</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2009-03-01" class="published">March 1, 2009</time>
</dd>
<dt class="label-intended-status">Intended Status:</dt>
<dd class="intended-status">Informational</dd>
<dt class="label-expires">Expires:</dt>
<dd class="expires"><time datetime="2009-09-02">September 2, 2009</time></dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">E.B. Davies, <span class="editor">Ed.</span>
</div>
<div class="org">Folly Consulting</div>
</div>
<div class="author">
<div class="author-name">Q. Zhao</div>
<div class="org">Huawei Technology</div>
</div>
</dd>
</dl>
</div>
<h1 id="title">Put Your Internet Draft Title Here</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">Insert an abstract: MANDATORY. This template is for creating an
Internet Draft.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
Internet-Drafts are working documents of the Internet Engineering Task
Force (IETF). Note that other groups may also distribute working
documents as Internet-Drafts. The list of current Internet-Drafts is
at <span><a href="http://datatracker.ietf.org/drafts/current/">http://datatracker.ietf.org/drafts/current/</a></span>.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-4">
This Internet-Draft will expire on September 2, 2009.<a href="#section-boilerplate.1-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2009 IETF Trust and the persons identified as
the document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents in effect on the date of
publication of this document (http://trustee.ietf.org/license-info).
Please review these documents carefully, as they describe your rights
and restrictions with respect to this document.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="auto internal xref">1</a>. <a href="#name-introduction" class="internal xref">Introduction</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.1.2.1">
<p id="section-toc.1-1.1.2.1.1" class="keepWithNext"><a href="#section-1.1" class="auto internal xref">1.1</a>. <a href="#name-requirements-language" class="internal xref">Requirements Language</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1" class="keepWithNext"><a href="#section-2" class="auto internal xref">2</a>. <a href="#name-simple-list" class="internal xref">Simple List</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="auto internal xref">3</a>. <a href="#name-figures" class="internal xref">Figures</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="auto internal xref">4</a>. <a href="#name-subsections-and-tables" class="internal xref">Subsections and Tables</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="auto internal xref">4.1</a>. <a href="#name-a-subsection" class="internal xref">A Subsection</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="auto internal xref">4.2</a>. <a href="#name-tables" class="internal xref">Tables</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="auto internal xref">5</a>. <a href="#name-more-about-lists" class="internal xref">More about Lists</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.1">
<p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="auto internal xref">5.1</a>. <a href="#name-numbering-lists-across-list" class="internal xref">Numbering Lists across Lists and Sections</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.2">
<p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="auto internal xref">5.2</a>. <a href="#name-where-the-list-numbering-co" class="internal xref">Where the List Numbering Continues</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.3">
<p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="auto internal xref">5.3</a>. <a href="#name-nested-lists" class="internal xref">nested lists</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5.2.4">
<p id="section-toc.1-1.5.2.4.1"><a href="#section-5.4" class="auto internal xref">5.4</a>. <a href="#name-list-formats" class="internal xref">List Formats</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="auto internal xref">6</a>. <a href="#name-example-of-code-or-mib-modu" class="internal xref">Example of Code or MIB Module To Be Extracted</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="auto internal xref">7</a>. <a href="#name-acknowledgements" class="internal xref">Acknowledgements</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="auto internal xref">8</a>. <a href="#name-iana-considerations" class="internal xref">IANA Considerations</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="auto internal xref">9</a>. <a href="#name-security-considerations" class="internal xref">Security Considerations</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-10" class="auto internal xref">10</a>. <a href="#name-references" class="internal xref">References</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.10.2.1">
<p id="section-toc.1-1.10.2.1.1"><a href="#section-10.1" class="auto internal xref">10.1</a>. <a href="#name-normative-references" class="internal xref">Normative References</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.10.2.2">
<p id="section-toc.1-1.10.2.2.1"><a href="#section-10.2" class="auto internal xref">10.2</a>. <a href="#name-informative-references" class="internal xref">Informative References</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#appendix-A" class="auto internal xref">Appendix A</a>. <a href="#name-additional-stuff" class="internal xref">Additional Stuff</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#appendix-B" class="auto internal xref"></a><a href="#name-contributors" class="internal xref">Contributors</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#appendix-C" class="auto internal xref"></a><a href="#name-authors-addresses" class="internal xref">Authors' Addresses</a></p>
</li>
</ul>
</nav>
</section>
</div>
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">The original specification of xml2rfc format is in <span><a href="#RFC2629" class="internal xref">RFC 2629</a> [<a href="#RFC2629" class="cite xref">RFC2629</a>]</span>.<a href="#section-1-1" class="pilcrow">¶</a></p>
<section id="section-1.1">
<h3 id="name-requirements-language">
<a href="#section-1.1" class="section-number selfRef">1.1. </a><a href="#name-requirements-language" class="section-name selfRef">Requirements Language</a>
</h3>
<p id="section-1.1-1">The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <span><a href="#RFC2119" class="internal xref">RFC 2119</a> [<a href="#RFC2119" class="cite xref">RFC2119</a>]</span>.<a href="#section-1.1-1" class="pilcrow">¶</a></p>
</section>
</section>
<div id="simple_list">
<section id="section-2">
<h2 id="name-simple-list">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-simple-list" class="section-name selfRef">Simple List</a>
</h2>
<p id="section-2-1">List styles: 'empty', 'symbols', 'letters', 'numbers', 'hanging',
'format'.<a href="#section-2-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-2.1">
<p id="section-2-2.1.1">First bullet<a href="#section-2-2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="normal" id="section-2-2.2">
<p id="section-2-2.2.1">Second bullet<a href="#section-2-2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
<p id="section-2-3"> You can write text here as well.<a href="#section-2-3" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-3">
<h2 id="name-figures">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-figures" class="section-name selfRef">Figures</a>
</h2>
<p id="section-3-1">Figures should not exceed 69 characters wide to allow for the indent
of sections.<a href="#section-3-1" class="pilcrow">¶</a></p>
<p id="section-3-2" class="keepWithNext">Preamble text - can be omitted or empty.<a href="#section-3-2" class="pilcrow">¶</a></p>
<div id="xml_happy">
<figure id="figure-1">
<div id="section-3-3.1">
<div class="alignLeft art-svg artwork" id="section-3-3.1.1">
<svg xmlns="http://www.w3.org/2000/svg" width="175" height="57" viewBox="0 0 175 57">
<path d="M60,2l12,12l-12,12l-12-12zM88,2l12,12l-12,12l-12-12zM116,2l12,12l-12,12l-12-12zM18,16l12,12l-12,12l-12-12zM46,16l12,12l-12,12l-12-12zM74,16l12,12l-12,12l-12-12zM102,16l12,12l-12,12l-12-12zM130,16l12,12l-12,12l-12-12zM158,16l12,12l-12,12l-12-12zM60,30l12,12l-12,12l-12-12zM88,30l12,12l-12,12l-12-12zM116,30l12,12l-12,12l-12-12z" fill="black"></path>
<path stroke="black" stroke-width="0.5" d="M7,27h26l13,13l14-14l14,14l28-28l14,14l14-14l15,15h26v3h-27l-14-14l-14,14l-14-14l-28,28l-14-14l-14,14l-14-14h-25z" fill="white"></path>
<path d="M3,26h5v5h-5zM168,26h5v5h-5z"></path>
</svg><a href="#section-3-3.1.1" class="pilcrow">¶</a>
</div>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a></figcaption></figure>
</div>
<p id="section-3-4" class="keepWithPrevious">Cross-references allowed in pre- and postamble. <span>[<a href="#min_ref" class="cite xref">min_ref</a>]</span>.<a href="#section-3-4" class="pilcrow">¶</a></p>
<p id="section-3-5">The CDATA means you don't need to escape meta-characters (especially
< (&lt;) and & (&amp;)) but is not essential.
Figures may also have a title attribute but it won't be displayed unless
there is also an anchor. White space, both horizontal and vertical, is
<em>significant</em> in figures even if you don't use CDATA.<a href="#section-3-5" class="pilcrow">¶</a></p>
</section>
<section id="section-4">
<h2 id="name-subsections-and-tables">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-subsections-and-tables" class="section-name selfRef">Subsections and Tables</a>
</h2>
<section id="section-4.1">
<h3 id="name-a-subsection">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-a-subsection" class="section-name selfRef">A Subsection</a>
</h3>
<p id="section-4.1-1">By default 3 levels of nesting show in table of contents but that
can be adjusted with the value of the "tocdepth" processing
instruction.<a href="#section-4.1-1" class="pilcrow">¶</a></p>
</section>
<section id="section-4.2">
<h3 id="name-tables">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-tables" class="section-name selfRef">Tables</a>
</h3>
<p id="section-4.2-1">.. are very similar to figures:<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2" class="keepWithNext">Tables use ttcol to define column headers and widths.
Every cell then has a "c" element for its content.<a href="#section-4.2-2" class="pilcrow">¶</a></p>
<span id="name-a-very-simple-table"></span><div id="table_example">
<table class="center" id="table-1">
<caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-a-very-simple-table" class="selfRef">A Very Simple Table</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">ttcol #1</th>
<th class="text-center" rowspan="1" colspan="1">ttcol #2</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">c #1</td>
<td class="text-center" rowspan="1" colspan="1">c #2</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">c #3</td>
<td class="text-center" rowspan="1" colspan="1">c #4</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">c #5</td>
<td class="text-center" rowspan="1" colspan="1">c #6</td>
</tr>
</tbody>
</table>
</div>
<p id="section-4.2-4" class="keepWithPrevious">which is a very simple example.<a href="#section-4.2-4" class="pilcrow">¶</a></p>
</section>
</section>
<div id="nested_lists">
<section id="section-5">
<h2 id="name-more-about-lists">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-more-about-lists" class="section-name selfRef">More about Lists</a>
</h2>
<p id="section-5-1">Lists with 'hanging labels': the list item is indented the amount of
the hangIndent:<a href="#section-5-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlNewline" id="section-5-2">
<dt id="section-5-2.1">short</dt>
<dd style="margin-left: 4.0em" id="section-5-2.2">With a label shorter than the hangIndent.<a href="#section-5-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5-2.3">fantastically long label</dt>
<dd style="margin-left: 4.0em" id="section-5-2.4">With a label longer than the
hangIndent.<a href="#section-5-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5-2.5">vspace_trick</dt>
<dd style="margin-left: 4.0em" id="section-5-2.6">Forces the new
item to start on a new line.<a href="#section-5-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5-3">Simulating more than one paragraph in a list item using
<vspace>:<a href="#section-5-3" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-5-4">
<li id="section-5-4.1">
<p id="section-5-4.1.1">First, a short item.<a href="#section-5-4.1.1" class="pilcrow">¶</a></p>
</li>
<li id="section-5-4.2">
<p id="section-5-4.2.1">Second, a longer list item.<a href="#section-5-4.2.1" class="pilcrow">¶</a></p>
<p id="section-5-4.2.2"> And
something that looks like a separate pararaph..<a href="#section-5-4.2.2" class="pilcrow">¶</a></p>
</li>
</ol>
<p id="section-5-5">Simple indented paragraph using the "empty" style:<a href="#section-5-5" class="pilcrow">¶</a></p>
<ul class="normal ulEmpty">
<li class="normal ulEmpty" id="section-5-6.1">
<p id="section-5-6.1.1">The quick, brown fox jumped over the lazy dog and lived to fool
many another hunter in the great wood in the west.<a href="#section-5-6.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
<section id="section-5.1">
<h3 id="name-numbering-lists-across-list">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-numbering-lists-across-list" class="section-name selfRef">Numbering Lists across Lists and Sections</a>
</h3>
<p id="section-5.1-1">Numbering items continuously although they are in separate
<list> elements, maybe in separate sections using the "format"
style and a "counter" variable.<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<p id="section-5.1-2">First list:<a href="#section-5.1-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="olPercent" id="section-5.1-3">
<dt>R1</dt>
<dd id="section-5.1-3.1">
<p id="section-5.1-3.1.1">#1<a href="#section-5.1-3.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R2</dt>
<dd id="section-5.1-3.2">
<p id="section-5.1-3.2.1">#2<a href="#section-5.1-3.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R3</dt>
<dd id="section-5.1-3.3">
<p id="section-5.1-3.3.1">#3<a href="#section-5.1-3.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.1-4"> Specify the indent explicitly so that all the items line up
nicely.<a href="#section-5.1-4" class="pilcrow">¶</a></p>
<p id="section-5.1-5">Second list:<a href="#section-5.1-5" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="olPercent" id="section-5.1-6">
<dt>R4</dt>
<dd id="section-5.1-6.1">
<p id="section-5.1-6.1.1">#4<a href="#section-5.1-6.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R5</dt>
<dd id="section-5.1-6.2">
<p id="section-5.1-6.2.1">#5<a href="#section-5.1-6.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R6</dt>
<dd id="section-5.1-6.3">
<p id="section-5.1-6.3.1">#6<a href="#section-5.1-6.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-5.2">
<h3 id="name-where-the-list-numbering-co">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-where-the-list-numbering-co" class="section-name selfRef">Where the List Numbering Continues</a>
</h3>
<p id="section-5.2-1">List continues here.<a href="#section-5.2-1" class="pilcrow">¶</a></p>
<p id="section-5.2-2">Third list:<a href="#section-5.2-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="olPercent" id="section-5.2-3">
<dt>R7</dt>
<dd id="section-5.2-3.1">
<p id="section-5.2-3.1.1">#7<a href="#section-5.2-3.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R8</dt>
<dd id="section-5.2-3.2">
<p id="section-5.2-3.2.1">#8<a href="#section-5.2-3.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R9</dt>
<dd id="section-5.2-3.3">
<p id="section-5.2-3.3.1">#9<a href="#section-5.2-3.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>R10</dt>
<dd id="section-5.2-3.4">
<p id="section-5.2-3.4.1">#10<a href="#section-5.2-3.4.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2-4"> The end of the list.<a href="#section-5.2-4" class="pilcrow">¶</a></p>
</section>
<section id="section-5.3">
<h3 id="name-nested-lists">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-nested-lists" class="section-name selfRef">nested lists</a>
</h3>
<p id="section-5.3-1">Simulating more than one paragraph in a list item using
<vspace>:<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-5.3-2">
<li id="section-5.3-2.1">
<p id="section-5.3-2.1.1">First, a short item.<a href="#section-5.3-2.1.1" class="pilcrow">¶</a></p>
</li>
<li id="section-5.3-2.2">
<p id="section-5.3-2.2.1">Second, a longer list item.<a href="#section-5.3-2.2.1" class="pilcrow">¶</a></p>
<p id="section-5.3-2.2.2"> And
something that looks like a separate paragraph.<a href="#section-5.3-2.2.2" class="pilcrow">¶</a></p>
</li>
<li id="section-5.3-2.3">
<p id="section-5.3-2.3.1">and a sublist, also with letters<a href="#section-5.3-2.3.1" class="pilcrow">¶</a></p>
<ol start="1" type="A" class="normal type-A" id="section-5.3-2.3.2">
<li id="section-5.3-2.3.2.1">
<p id="section-5.3-2.3.2.1.1">first subitem<a href="#section-5.3-2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li id="section-5.3-2.3.2.2">
<p id="section-5.3-2.3.2.2.1">second subitem<a href="#section-5.3-2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li id="section-5.3-2.3.2.3">
<p id="section-5.3-2.3.2.3.1">and a sub-sublist, also with letters<a href="#section-5.3-2.3.2.3.1" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-5.3-2.3.2.3.2">
<li id="section-5.3-2.3.2.3.2.1">
<p id="section-5.3-2.3.2.3.2.1.1">first sub-subitem<a href="#section-5.3-2.3.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li id="section-5.3-2.3.2.3.2.2">
<p id="section-5.3-2.3.2.3.2.2.1">second sub-subitem<a href="#section-5.3-2.3.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</section>
<section id="section-5.4">
<h3 id="name-list-formats">
<a href="#section-5.4" class="section-number selfRef">5.4. </a><a href="#name-list-formats" class="section-name selfRef">List Formats</a>
</h3>
<p id="section-5.4-1">many formats<a href="#section-5.4-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="olPercent" id="section-5.4-2">
<dt>a</dt>
<dd id="section-5.4-2.1">
<p id="section-5.4-2.1.1">first %c-item<a href="#section-5.4-2.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>b</dt>
<dd id="section-5.4-2.2">
<p id="section-5.4-2.2.1">more %c-items<a href="#section-5.4-2.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-3">
<dt>A</dt>
<dd id="section-5.4-3.1">
<p id="section-5.4-3.1.1">first %C-item<a href="#section-5.4-3.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>B</dt>
<dd id="section-5.4-3.2">
<p id="section-5.4-3.2.1">more %C-items<a href="#section-5.4-3.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-4">
<dt>1</dt>
<dd id="section-5.4-4.1">
<p id="section-5.4-4.1.1">first %d-item.<a href="#section-5.4-4.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>2</dt>
<dd id="section-5.4-4.2">
<p id="section-5.4-4.2.1">more %d-items.<a href="#section-5.4-4.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-5">
<dt>i</dt>
<dd id="section-5.4-5.1">
<p id="section-5.4-5.1.1">first %i-item<a href="#section-5.4-5.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>ii</dt>
<dd id="section-5.4-5.2">
<p id="section-5.4-5.2.1">more %i-items<a href="#section-5.4-5.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>iii</dt>
<dd id="section-5.4-5.3">
<p id="section-5.4-5.3.1">more %i-items<a href="#section-5.4-5.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>iv</dt>
<dd id="section-5.4-5.4">
<p id="section-5.4-5.4.1">more %i-items<a href="#section-5.4-5.4.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>v</dt>
<dd id="section-5.4-5.5">
<p id="section-5.4-5.5.1">more %i-items<a href="#section-5.4-5.5.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>vi</dt>
<dd id="section-5.4-5.6">
<p id="section-5.4-5.6.1">more %i-items<a href="#section-5.4-5.6.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>vii</dt>
<dd id="section-5.4-5.7">
<p id="section-5.4-5.7.1">more %i-items<a href="#section-5.4-5.7.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>viii</dt>
<dd id="section-5.4-5.8">
<p id="section-5.4-5.8.1">more %i-items<a href="#section-5.4-5.8.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>ix</dt>
<dd id="section-5.4-5.9">
<p id="section-5.4-5.9.1">more %i-items<a href="#section-5.4-5.9.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-6">
<dt>I</dt>
<dd id="section-5.4-6.1">
<p id="section-5.4-6.1.1">first %I-item<a href="#section-5.4-6.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>II</dt>
<dd id="section-5.4-6.2">
<p id="section-5.4-6.2.1">more %I-items<a href="#section-5.4-6.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>III</dt>
<dd id="section-5.4-6.3">
<p id="section-5.4-6.3.1">more %I-items<a href="#section-5.4-6.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>IV</dt>
<dd id="section-5.4-6.4">
<p id="section-5.4-6.4.1">more %I-items<a href="#section-5.4-6.4.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>V</dt>
<dd id="section-5.4-6.5">
<p id="section-5.4-6.5.1">more %I-items<a href="#section-5.4-6.5.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>VI</dt>
<dd id="section-5.4-6.6">
<p id="section-5.4-6.6.1">more %I-items<a href="#section-5.4-6.6.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>VII</dt>
<dd id="section-5.4-6.7">
<p id="section-5.4-6.7.1">more %I-items<a href="#section-5.4-6.7.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>VIII</dt>
<dd id="section-5.4-6.8">
<p id="section-5.4-6.8.1">more %I-items<a href="#section-5.4-6.8.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>IX</dt>
<dd id="section-5.4-6.9">
<p id="section-5.4-6.9.1">more %I-items<a href="#section-5.4-6.9.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-7">
<dt>1</dt>
<dd id="section-5.4-7.1">
<p id="section-5.4-7.1.1">first %o-item<a href="#section-5.4-7.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>2</dt>
<dd id="section-5.4-7.2">
<p id="section-5.4-7.2.1">more %o-items<a href="#section-5.4-7.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>3</dt>
<dd id="section-5.4-7.3">
<p id="section-5.4-7.3.1">more %o-items<a href="#section-5.4-7.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>4</dt>
<dd id="section-5.4-7.4">
<p id="section-5.4-7.4.1">more %o-items<a href="#section-5.4-7.4.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>5</dt>
<dd id="section-5.4-7.5">
<p id="section-5.4-7.5.1">more %o-items<a href="#section-5.4-7.5.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>6</dt>
<dd id="section-5.4-7.6">
<p id="section-5.4-7.6.1">more %o-items<a href="#section-5.4-7.6.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>7</dt>
<dd id="section-5.4-7.7">
<p id="section-5.4-7.7.1">more %o-items<a href="#section-5.4-7.7.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>10</dt>
<dd id="section-5.4-7.8">
<p id="section-5.4-7.8.1">more %o-items<a href="#section-5.4-7.8.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>11</dt>
<dd id="section-5.4-7.9">
<p id="section-5.4-7.9.1">more %o-items<a href="#section-5.4-7.9.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-8">
<dt>1</dt>
<dd id="section-5.4-8.1">
<p id="section-5.4-8.1.1">first %x-item<a href="#section-5.4-8.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>2</dt>
<dd id="section-5.4-8.2">
<p id="section-5.4-8.2.1">more %x-items<a href="#section-5.4-8.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>3</dt>
<dd id="section-5.4-8.3">
<p id="section-5.4-8.3.1">more %x-items<a href="#section-5.4-8.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>4</dt>
<dd id="section-5.4-8.4">
<p id="section-5.4-8.4.1">more %x-items<a href="#section-5.4-8.4.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>5</dt>
<dd id="section-5.4-8.5">
<p id="section-5.4-8.5.1">more %x-items<a href="#section-5.4-8.5.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>6</dt>
<dd id="section-5.4-8.6">
<p id="section-5.4-8.6.1">more %x-items<a href="#section-5.4-8.6.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>7</dt>
<dd id="section-5.4-8.7">
<p id="section-5.4-8.7.1">more %x-items<a href="#section-5.4-8.7.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>8</dt>
<dd id="section-5.4-8.8">
<p id="section-5.4-8.8.1">more %x-items<a href="#section-5.4-8.8.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>9</dt>
<dd id="section-5.4-8.9">
<p id="section-5.4-8.9.1">more %x-items<a href="#section-5.4-8.9.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>a</dt>
<dd id="section-5.4-8.10">
<p id="section-5.4-8.10.1">more %x-items<a href="#section-5.4-8.10.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>b</dt>
<dd id="section-5.4-8.11">
<p id="section-5.4-8.11.1">more %x-items<a href="#section-5.4-8.11.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>c</dt>
<dd id="section-5.4-8.12">
<p id="section-5.4-8.12.1">more %x-items<a href="#section-5.4-8.12.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>d</dt>
<dd id="section-5.4-8.13">
<p id="section-5.4-8.13.1">more %x-items<a href="#section-5.4-8.13.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>e</dt>
<dd id="section-5.4-8.14">
<p id="section-5.4-8.14.1">more %x-items<a href="#section-5.4-8.14.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>f</dt>
<dd id="section-5.4-8.15">
<p id="section-5.4-8.15.1">more %x-items<a href="#section-5.4-8.15.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>10</dt>
<dd id="section-5.4-8.16">
<p id="section-5.4-8.16.1">more %x-items<a href="#section-5.4-8.16.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>11</dt>
<dd id="section-5.4-8.17">
<p id="section-5.4-8.17.1">more %x-items<a href="#section-5.4-8.17.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="olPercent" id="section-5.4-9">
<dt>1</dt>
<dd id="section-5.4-9.1">
<p id="section-5.4-9.1.1">first %X-item<a href="#section-5.4-9.1.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>2</dt>
<dd id="section-5.4-9.2">
<p id="section-5.4-9.2.1">more %X-items<a href="#section-5.4-9.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>3</dt>
<dd id="section-5.4-9.3">
<p id="section-5.4-9.3.1">more %X-items<a href="#section-5.4-9.3.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>4</dt>
<dd id="section-5.4-9.4">
<p id="section-5.4-9.4.1">more %X-items<a href="#section-5.4-9.4.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>5</dt>
<dd id="section-5.4-9.5">
<p id="section-5.4-9.5.1">more %X-items<a href="#section-5.4-9.5.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>6</dt>
<dd id="section-5.4-9.6">
<p id="section-5.4-9.6.1">more %X-items<a href="#section-5.4-9.6.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>7</dt>
<dd id="section-5.4-9.7">
<p id="section-5.4-9.7.1">more %X-items<a href="#section-5.4-9.7.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>8</dt>
<dd id="section-5.4-9.8">
<p id="section-5.4-9.8.1">more %X-items<a href="#section-5.4-9.8.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>9</dt>
<dd id="section-5.4-9.9">
<p id="section-5.4-9.9.1">more %X-items<a href="#section-5.4-9.9.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>A</dt>
<dd id="section-5.4-9.10">
<p id="section-5.4-9.10.1">more %X-items<a href="#section-5.4-9.10.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>B</dt>
<dd id="section-5.4-9.11">
<p id="section-5.4-9.11.1">more %X-items<a href="#section-5.4-9.11.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>C</dt>
<dd id="section-5.4-9.12">
<p id="section-5.4-9.12.1">more %X-items<a href="#section-5.4-9.12.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>D</dt>
<dd id="section-5.4-9.13">
<p id="section-5.4-9.13.1">more %X-items<a href="#section-5.4-9.13.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>E</dt>
<dd id="section-5.4-9.14">
<p id="section-5.4-9.14.1">more %X-items<a href="#section-5.4-9.14.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>F</dt>
<dd id="section-5.4-9.15">
<p id="section-5.4-9.15.1">more %X-items<a href="#section-5.4-9.15.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>10</dt>
<dd id="section-5.4-9.16">
<p id="section-5.4-9.16.1">more %X-items<a href="#section-5.4-9.16.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt>11</dt>
<dd id="section-5.4-9.17">
<p id="section-5.4-9.17.1">more %X-items<a href="#section-5.4-9.17.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
</section>
</div>
<div id="codeExample">
<section id="section-6">
<h2 id="name-example-of-code-or-mib-modu">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-example-of-code-or-mib-modu" class="section-name selfRef">Example of Code or MIB Module To Be Extracted</a>
</h2>
<p id="section-6-1" class="keepWithNext">The <artwork> element has a number of extra attributes
that can be used to substitute a more aesthetically pleasing rendition
into HTML output while continuing to use the ASCII art version in the
text and nroff outputs (see the xml2rfc README for details). It also
has a "type" attribute. This is currently ignored except in the case
'type="abnf"'. In this case the "artwork" is expected to contain a
piece of valid Augmented Backus-Naur Format (ABNF) grammar. This will
be syntax checked by xml2rfc and any errors will cause a fatal error
if the "strict" processing instruction is set to "yes". The ABNF will
also be colorized in HTML output to highlight the syntactic
components. Checking of additional "types" may be provided in future
versions of xml2rfc.<a href="#section-6-1" class="pilcrow">¶</a></p>
<div class="sourcecode" id="section-6-2">
<pre><CODE BEGINS> file "example.c"
/**** an example C program */
#include <stdio.h>
void
main(int argc, char *argv[])
{
int i;
printf("program arguments are:\n");
for (i = 0; i < argc; i++) {
printf("%d: \"%s\"\n", i, argv[i]);
}
exit(0);
} /* main */
/* end of file */
<CODE ENDS></pre><a href="#section-6-2" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="Acknowledgements">
<section id="section-7">
<h2 id="name-acknowledgements">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
</h2>
<p id="section-7-1">This template was derived from an initial version written by Pekka
Savola and contributed by him to the xml2rfc project.<a href="#section-7-1" class="pilcrow">¶</a></p>
<p id="section-7-2">
This document is part of a plan to make xml2rfc indispensable <span>[<a href="#DOMINATION" class="cite xref">DOMINATION</a>]</span>.
This document may be shared as needed <span>[<a href="#SHARING" class="cite xref">SHARING</a>]</span>. If necessary, appeal to <span>[<a href="#DOI_10.1145_2975159" class="cite xref">DOI_10.1145_2975159</a>]</span>.<a href="#section-7-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="IANA">
<section id="section-8">
<h2 id="name-iana-considerations">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-8-1">This memo includes no request to IANA.<a href="#section-8-1" class="pilcrow">¶</a></p>
<p id="section-8-2">All drafts are required to have an IANA considerations section (see
<span><a href="#I-D.narten-iana-considerations-rfc2434bis" class="internal xref">the update of
RFC 2434</a> [<a href="#I-D.narten-iana-considerations-rfc2434bis" class="cite xref">I-D.narten-iana-considerations-rfc2434bis</a>]</span> for a guide). If the draft does not require IANA to do
anything, the section contains an explicit statement that this is the
case (as above). If there are no requirements for IANA, the section will
be removed during conversion into an RFC by the RFC Editor.<a href="#section-8-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Security">
<section id="section-9">
<h2 id="name-security-considerations">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-9-1">All drafts are required to have a security considerations section.
See <span><a href="#RFC3552" class="internal xref">RFC 3552</a> [<a href="#RFC3552" class="cite xref">RFC3552</a>]</span> for a guide.<a href="#section-9-1" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-10">
<h2 id="name-references">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-10.1">
<h3 id="name-normative-references">
<a href="#section-10.1" class="section-number selfRef">10.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="min_ref">[min_ref]</dt>
<dd>
<span class="refAuthor">authSurName, authInitials.</span>, <span class="refTitle">"Minimal Reference"</span>, <time datetime="2006" class="refDate">2006</time>. </dd>
<dd class="break"></dd>
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-10.2">
<h3 id="name-informative-references">
<a href="#section-10.2" class="section-number selfRef">10.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="DOI_10.1145_2975159">[DOI_10.1145_2975159]</dt>
<dd>
<span class="refAuthor">Singh, A.</span>, <span class="refAuthor">Ong, J.</span>, <span class="refAuthor">Agarwal, A.</span>, <span class="refAuthor">Anderson, G.</span>, <span class="refAuthor">Armistead, A.</span>, <span class="refAuthor">Bannon, R.</span>, <span class="refAuthor">Boving, S.</span>, <span class="refAuthor">Desai, G.</span>, <span class="refAuthor">Felderman, B.</span>, <span class="refAuthor">Germano, P.</span>, <span class="refAuthor">Kanagala, A.</span>, <span class="refAuthor">Liu, H.</span>, <span class="refAuthor">Provost, J.</span>, <span class="refAuthor">Simmons, J.</span>, <span class="refAuthor">Tanda, E.</span>, <span class="refAuthor">Wanderer, J.</span>, <span class="refAuthor">Hölzle, U.</span>, <span class="refAuthor">Stuart, S.</span>, <span class="refAuthor">Vahdat, A.</span>, and <span class="refAuthor">Association for Computing Machinery (ACM)</span>, <span class="refTitle">"Jupiter rising"</span>, <span class="refContent">Communications of the ACM, vol. 59, no. 9, pp. 88-97</span>, <span class="seriesInfo">DOI 10.1145/2975159</span>, <time datetime="2016-08-24" class="refDate">August 24, 2016</time>, <span><<a href="http://dx.doi.org/10.1145/2975159">http://dx.doi.org/10.1145/2975159</a>></span>. </dd>
<dd class="break"></dd>
<dt id="DOMINATION">[DOMINATION]</dt>
<dd>
<span class="refAuthor">Mad Dominators, Inc.</span>, <span class="refTitle">"Ultimate Plan for Taking Over the World"</span>, <time datetime="1984" class="refDate">1984</time>, <span><<a href="http://www.example.com/dominator.html">http://www.example.com/dominator.html</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.iab-xml2rfc">[I-D.iab-xml2rfc]</dt>
<dd>
<span class="refAuthor">Hoffman, P. E.</span>, <span class="refTitle">"The "xml2rfc" Version 3 Vocabulary"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-iab-xml2rfc-04</span>, <time datetime="2016-06-22" class="refDate">June 22, 2016</time>, <span><<a href="https://datatracker.ietf.org/doc/html/draft-iab-xml2rfc-04">https://datatracker.ietf.org/doc/html/draft-iab-xml2rfc-04</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.iab-xml2rfcv2">[I-D.iab-xml2rfcv2]</dt>
<dd>
<span class="refAuthor">Reschke, J.</span>, <span class="refTitle">"The 'XML2RFC' version 2 Vocabulary"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-iab-xml2rfcv2-00</span>, <time datetime="2015-01-09" class="refDate">January 9, 2015</time>, <span><<a href="https://datatracker.ietf.org/doc/html/draft-iab-xml2rfcv2-00">https://datatracker.ietf.org/doc/html/draft-iab-xml2rfcv2-00</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.narten-iana-considerations-rfc2434bis">[I-D.narten-iana-considerations-rfc2434bis]</dt>
<dd>
<span class="refAuthor">Alvestrand, H. T.</span> and <span class="refAuthor">T. Narten</span>, <span class="refTitle">"Guidelines for Writing an IANA Considerations Section in RFCs"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-narten-iana-considerations-rfc2434bis-09</span>, <time datetime="2008-03-26" class="refDate">March 26, 2008</time>, <span><<a href="https://datatracker.ietf.org/doc/html/draft-narten-iana-considerations-rfc2434bis-09">https://datatracker.ietf.org/doc/html/draft-narten-iana-considerations-rfc2434bis-09</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2629">[RFC2629]</dt>
<dd>
<span class="refAuthor">Rose, M.</span>, <span class="refTitle">"Writing I-Ds and RFCs using XML"</span>, <span class="seriesInfo">RFC 2629</span>, <span class="seriesInfo">DOI 10.17487/RFC2629</span>, <time datetime="1999-06" class="refDate">June 1999</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2629">https://www.rfc-editor.org/info/rfc2629</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3552">[RFC3552]</dt>
<dd>
<span class="refAuthor">Rescorla, E.</span> and <span class="refAuthor">B. Korver</span>, <span class="refTitle">"Guidelines for Writing RFC Text on Security Considerations"</span>, <span class="seriesInfo">BCP 72</span>, <span class="seriesInfo">RFC 3552</span>, <span class="seriesInfo">DOI 10.17487/RFC3552</span>, <time datetime="2003-07" class="refDate">July 2003</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3552">https://www.rfc-editor.org/info/rfc3552</a>></span>. </dd>
<dd class="break"></dd>
<dt id="SHARING">[SHARING]</dt>
<dd>
<span class="refAuthor">Sesame Street</span>, <span class="refTitle">"I Learned to Share in Kindergarten"</span>, <time datetime="1972" class="refDate">1972</time>, <span><<a href="http://www.example.com/sharing.html">http://www.example.com/sharing.html</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<div id="app-additional">
<section id="appendix-A">
<h2 id="name-additional-stuff">
<a href="#appendix-A" class="section-number selfRef">Appendix A. </a><a href="#name-additional-stuff" class="section-name selfRef">Additional Stuff</a>
</h2>
<p id="appendix-A-1">This becomes an Appendix.<a href="#appendix-A-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="contributors">
<section id="appendix-B">
<h2 id="name-contributors">
<a href="#name-contributors" class="section-name selfRef">Contributors</a>
</h2>
<p id="appendix-B-1">This becomes an unnumbered section<a href="#appendix-B-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="appendix-C">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Elwyn Davies (<span class="role">editor</span>)</span></div>
<div dir="auto" class="left"><span class="org">Folly Consulting</span></div>
<div dir="auto" class="left"><span class="locality">Soham</span></div>
<div dir="auto" class="left"><span class="country-name">United Kingdom</span></div>
<div class="tel">
<span>Phone:</span>
<a href="tel:+44%207889%20488%20335" class="tel">+44 7889 488 335</a>
</div>
<div class="email">
<span>Email:</span>
<a href="mailto:elwynd@dial.pipex.com" class="email">elwynd@dial.pipex.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Quintin Zhao</span></div>
<div dir="auto" class="left"><span class="org">Huawei Technology</span></div>
<div dir="auto" class="left"><span class="street-address">125 Nagog Technology Park</span></div>
<div dir="auto" class="left">
<span class="locality">Acton</span>, <span class="region">MA</span> <span class="postal-code">01719</span>
</div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:quintin.zhao@huawei.com" class="email">quintin.zhao@huawei.com</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|