How can I create a list which looks like this in Word?
1. Foo
2. Bar
3. For example:
a. 1. Foo
2. Bar
3. Baz
b. 1. Foo
2. Bar
3. Baz
4. Baz
In terms of HTML, this would require this markup:
<ol>
<li>Foo</li>
<li>Bar</li>
<li>
For example:
<ol>
<li>
<ol>
<li>Foo</li>
<li>Bar</li>
<li>Baz</li>
</ol>
</li>
<li>
<ol>
<li>Foo</li>
<li>Bar</li>
<li>Baz</li>
</ol>
</li>
</ol>
</li>
<li>Baz</li>
</ol>
I can't for the life of me figure out how to make Word create this "empty" second level list. I'm using Word 2011 (Mac OS X).