Here is the way to make the WordPress ordered list using Roman numerals. For scientific, official, legal publications Roman numerals are still used.
It is quite easy than you are thinking.
An ordered list of upper case Roman numerals
Switch to HTML mode and copy paste the following :
---
<ol style=”list-style-type:upper-roman;”>
<li> Roman </ li>
<li> numerals </ li>
<li> Roman numerals</ li>
<li> You will get upper case Roman numerals</ li>
<li> For lower case </ li>
<li> Follow the later part of the tutorial </ li>
</ ol>
Result:
- Roman
- numerals
- Roman numerals
- You will get upper case Roman numerals
- For lower case
- Follow the later part of the tutorial
An ordered list of lower case Roman numerals
Switch to HTML mode and copy paste the following :
<ol style=”list-style-type:lower-roman;”>
<li> Roman </ li>
<li> numerals </ li>
<li> Roman numerals</ li>
<li> You will get upper case Roman numerals</ li>
<li> For lower case </ li>
<li> Follow the later part of the tutorial </ li>
</ ol>
Result:
- Roman
- numerals
- Roman numerals
- You will get lower case Roman numerals
- For upper case
- Use the above code
