List of Latex
- There are three lists in latex,
- Unordered lists
- Ordered lists
- Nested list
Ordered lists:
- In the ordered list you just simply replace itemize with enumerated environment.
- The Ordered list environment is totally different for other lists.
Syntax:
- The ordered lists are generated by a enumerate environment and each entry must be preceded by the control sequence item.
- It will automatically generate the number labelling the item.
- The enumerate labels consists of sequential numbers, these numbers starts at 1 with each call to the enumerate environment.
Nested Lists:
- In LATEX you can insert a list inside another list like nested form. The above list are combined to another one, either mixed or a one type, to a depth of four levels.
Sample Code:
Output:
Unordered lists
- Unordered lists works without any additional packages and use the itemize environment.
- The label scheme of unordered lists also changes will occur depending on the depth of the nested list.