customise ordered list

liunx

Guest
Is there a way to make an ordered list appear as:<br />
1a.<br />
1b.<br />
1c.<br />
1d.<br />
...<br />
<br />
Maybe by using a class style???<br />
<br />
Any suggestions welcome.<!--content-->hmmm.... there is no way that I know of. A problem with that type of list is that it would need to be sorted numerically and lexically, not sure that is possible.<!--content-->I haven't seen a type to combine numbers and letters such as your suggestion. The closest so far is to do them as separate lists...<br />
<br />
<ol start="1"><br />
<li>test</li><br />
<ol type="a" start="a"><br />
<li>test</li><br />
<li>test</li><br />
</ol><br />
<li>test</li><br />
<ol type="a" start="a"><br />
<li>test</li><br />
<li>test</li><br />
</ol><br />
<li>test</li><br />
</ol><!--content-->
 
Back
Top