Tagged Questions
5
votes
2answers
41 views
Create \ref for nested enumitem \item without nesting in the output
Sorry the question is a bit awkward.
Basically I have nested \begin{enumerate} lists. I'd like something to appear like this:
1 Foo
1.1 Bar
Please see additional information in subsection 1
...
9
votes
2answers
167 views
Nested enumerate labels with parent label appended plus a single set of enclosing parentheses
I want to have a list like
(1) foo
(1.1) foo
(1.2) foo
(2) foo
I am using the package enumitem and
\begin{enumerate}[label=(\arabic*)]
\item foo
\end{enumerate}
I know that i can append ...
4
votes
3answers
190 views
Question about enumitem, suspend/resume enumeration, last item of list, nested list
How do I suspend / resume an item of a list, multiple levels, if it is the last item of the list?
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}
\item first ...
1
vote
1answer
186 views
How to suppress vertical space between proof environment heads and itemize environments?
The user 'egreg' recently helped me to suppress vertical space between theorem
heads and enumitem environments (such as itemize; see the link below). I now
have a similar problem: When a proof ...
6
votes
1answer
291 views
Nested enumerate (enumitem) interferes with suppressing vertical space after theorem heads.
In the post How to suppress vertical space between theorem heads and enumitem environments? David Carlisle suggested a piece of code that helps suppressing vertical space between theorem heads and an ...
2
votes
2answers
222 views
enumitem nextline style: nested item shouldn't start on description label's line
I use enumitem description style nextline to emulate a sort of TOC entry with the following code:
\documentclass{article}
\usepackage{enumitem}
\newenvironment{DLdescription}[1][*]{%
...
4
votes
1answer
260 views
Proper margins in custom enumeration/itemize environements
I am using two custom list environments (itemize-compact and descriptionhang), which work fine on their own, but not when I nest them.
Please consider this MWE:
\documentclass[a4paper]{article}
...