Questions tagged [enumerate]

{enumerate} is about the enumerate list environment. If you use this tag, add the more general {lists} tag.

The environment is used to create numbered lists; if you use this tag, add the more general tag. For bulleted lists, one uses the environment, and for descriptive lists, one uses the environment.

Typically, enumerate is used like this:

\begin{enumerate}
  \item The first item
  \item The second item
  \item (and so on...)
\end{enumerate}

There are a few packages for customizing the appearance of numbered lists.

  1. The package (documentation) provides an interface to adjust the vertical and horizontal spacing of list items, define custom list environments, change the number/letter label of list items, and customize list numbering.
  2. The package (documentation) provides commands for using lists compactly within paragraphs.
  3. The enumerate package (documentation) provides a concise syntax for changing how the counter is printed (numbered, lettered, etc.).

Frequently Asked Questions

2394 questions
20
votes
4 answers

\begin{enumerate}[(a)] does not indent items

How can I indent letter items using the method expressed in the title: \documentclass[12]{article} \usepackage{enumerate} \begin{document} \section*{Greetings} \begin{enumerate}[(a)] \item Hello World % I am not indented \item Halo Welt \item…
user63097
14
votes
1 answer

How can I include square brackets in the text of an enumerate item?

I am trying to use square brackets at the very beginning of an item in an enumerate statement (but not as the item label itself). So, I want something like: \item [Short term] blah blah To show up as: 1. [Short term] blah blah Instead it shows up…
Nathan S.
  • 513
12
votes
3 answers

Item with more than one value in enumerate environment

I need to typeset a list like the following: item 1 item 2 item 3 4-6. The same as previous ones Something else Currently, I have typeset it using description environment as \documentclass{article} \begin{document} \begin{description} …
12
votes
3 answers

Enumeration in continuous text

I am trying to use enumeration in a text. It would look like in this example: "Among pets the most common ones are (i) dogs, (ii) cats and (iii) rabbits. (i) Dogs are very nice animals. However they need to be walked several times a…
aldorado
  • 337
11
votes
3 answers

How do we create a "continuous" list enumeration in LaTeX?

How can I create enumerated lists, but without breaking flow if we split it by another article/section/chapter? Example output I want to achieve: # Article I ## Section 1 - something 1. something 2. something ## Section 2 - something 3.…
TheTanadu
  • 213
11
votes
2 answers

How to remove a small dot in enumerate?

The code is \documentclass{article} \begin{document} \renewcommand{\theenumi}{\alph{enumi})} \begin{enumerate} \item The first item \item The second item \end{enumerate} \end{document} There is a small dot behind a) b). So how to remove it?
Taitai
  • 235
10
votes
1 answer

How can I create a Question/Answer format for reports?

I would like to create a question/answer format to use on lab reports. What I would like to achieve is something like this: a. This is the first question (in bold)? This is the answer (it is indented and regular text). b. This is the second question…
Lynx
  • 145
10
votes
2 answers

Problems with colorbox in Enumerate Environment

I'm writing solutions to an exam. For one of the multiple-choice problems, I've decided to shade all correct answers using colorbox. By the way, more than one choice for the problem may be correct (not that LaTeX cares). I have two issues: (1)…
Noob
  • 450
  • 4
  • 13
8
votes
1 answer

How to begin enumerate with a lowercase b?

I want to create an enumerate, that starts with lowercase b, and each next item is the next lowercase letter. So, it goes like b, c, d, e, and so on. I have the following code segment, but it makes all the items…
pixel
  • 1,357
8
votes
2 answers

How can I get the enumerate environment to count by n?

As part of a tenure portfolio packet, I need to create a list with numbering of the form A.5.0 Section A.5.50 Subsection A.5.60 Subsection A.5.70 Subsection How can I get the enumerate environment to automatically (i.e., without…
7
votes
1 answer

automatic enumerate numbering from a specified item number

Is there a way that I can start an enumerate numbering at, say 17, then have the succeeding item numbers automatically add 2 to the preceding one? Say, I want to typeset the answers to the odd-numbered exercises starting from 17, I want my list to…
hpesoj626
  • 17,282
7
votes
3 answers

Label of enumerate as a math environment with number "1" in subscript

I guess an example is the quickest way to understand my problem: Consider the following enumerate environment using package enumerate \documentclass{article} \usepackage{enumerate} \begin{document} \begin{enumerate}[$f_1:x\mapsto$] \item…
user42070
  • 342
7
votes
2 answers

How do I change the labels of enumerate?

I have the following list: \begin{enumerate} \item Particle Synthesis \item Video analysis \item Temperature Calibration \item Video Demonstration \end{enumerate} Which gives me a list enumerated by numericals (1., 2., ,...). Could…
Tian
  • 173
7
votes
2 answers

Remove space before and after enumerate

I am a beginner with LaTeX and I am trying to typeset my Resume. I am using {enumerate} to create a list to describe some work experience. However, there is unnecessary space before and after the list that I cannot get rid of. Does anybody have any…
7
votes
1 answer

Changing the default numbering scheme in enumerate environment

Together with a colleague I'm writing a book (with the Springer template), and I am currently homogenizing the layout. I'd like to change the default numbering scheme in the enumerate environment globally in the beginning of the document so that I…
Max Lein
  • 231
1
2 3
13 14