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
|
<p>First list: <br/><br/> Different list formatting characters, following what v1 supports: <br/><br/><br/> style="format %i": <br/><br/><br/> style="format (%d)": <br/><br/><br/> style="format %c)": <br/><br/><br/> style="format %C.": <br/><br/><br/> style="format %d.": </p>
<dl>
<dt>R1 </dt>
<dd>#1</dd>
<dt>R2 </dt>
<dd>#2</dd>
<dt>R3 </dt>
<dd>#3</dd>
</dl>
<p> Specify the indent explicitly so that all the items line up nicely. </p>
<dl>
<dt>i. </dt>
<dd>first item</dd>
<dt>ii. </dt>
<dd>second item</dd>
<dt>iii. </dt>
<dd>third item</dd>
<dt>iv. </dt>
<dd>fourth item</dd>
<dt>v. </dt>
<dd>5:th item</dd>
<dt>vi. </dt>
<dd>6:th item</dd>
<dt>vii. </dt>
<dd>7:th item</dd>
<dt>viii. </dt>
<dd>8:th item</dd>
<dt>ix. </dt>
<dd>9:th item</dd>
<dt>x. </dt>
<dd>10:th item</dd>
<dt>xi. </dt>
<dd>11:th item</dd>
<dt>xii. </dt>
<dd>12:th item</dd>
<dt>xiii. </dt>
<dd>13:th item</dd>
<dt>xiv. </dt>
<dd>14:th item</dd>
</dl>
<p> </p>
<dl>
<dt>(1) </dt>
<dd>first item</dd>
<dt>(2) </dt>
<dd>second item</dd>
<dt>(3) </dt>
<dd>third item</dd>
</dl>
<p> </p>
<dl>
<dt>a) </dt>
<dd>first item</dd>
<dt>b) </dt>
<dd>second item</dd>
<dt>c) </dt>
<dd>third item</dd>
</dl>
<p> </p>
<dl>
<dt>A. </dt>
<dd>first item</dd>
<dt>B. </dt>
<dd>second item</dd>
<dt>C. </dt>
<dd>third item</dd>
</dl>
<p> </p>
<dl>
<dt>1. </dt>
<dd>first item</dd>
<dt>2. </dt>
<dd>second item</dd>
<dt>3. </dt>
<dd>third item <br/><br/> A separate line <ol style="list-style-type: upper-alpha"><li>first sub-item</li><li>second sub-item</li><li>third sub-item</li></ol><p> </p></dd>
</dl>
<p> </p>
|