LaTeX
- Getting Started with LaTeX
- UMass Dissertation Template
- Overleaf Toggle Dropdown
- LaTeX Basics
- BibTeX Basics Toggle Dropdown
- LaTeX-STEM Applications Toggle Dropdown
- Beamer (Presentations)
- knitr (R Code in LaTeX)
- Overleaf Workshops/Tutorials Toggle Dropdown
List Tools
-
List GeneratorNeed help creating lists in LaTeX? Use the List Generator! Enter and format your lists in the online text editor. The List Generator will then provide you with the source code to create these lists in your own LaTeX document.
Getting Started with Lists
To create a list, you will create one of two types of environments:
enumerate- Ordered Listitemize- Unordered List
After opening the environment, simply use the command \item and then write your first item on the list. Use a new \item for each addition to the list.
Enumerate (Ordered List)
An enumerate environment will create an "ordered" list (e.g. numbered). See below for an example of source code and the resulting output.
Itemize (Unordered List)
An itemize environment will create an "unordered" list (e.g. bulleted). See below for an example of source code and the resulting output.
Descriptive Lists
There is a third type of list environment, description. Use an optional argument to insert your main text for the item. This text will appear in boldface. Text outside the optional argument will appear following this item in standard font. An example use case for this type of list environment might be creating a list of vocabulary words and their definitions. See the code and output below for an example.
Nested Lists
To create a nested list, simply create a new list environment inside of an existing list environment. This will create a subset list underneath the last item on the list. You can create nested lists using either enumerate or itemize environments. See below for examples of source code and resulting output. (Note: You do not need to indent the subset list in the source code. The nested list will automatically be made subset in the output. Doing so in the source code is simply to help with visual organization.)
- Last Updated: Oct 13, 2025 4:35 PM
- URL: https://guides.library.umass.edu/LaTeX
- Print Page