enumitem icon indicating copy to clipboard operation
enumitem copied to clipboard

Customize enumerate, itemize and description

Results 27 enumitem issues
Sort by recently updated
recently updated
newest added

Consider the (somewhat unrealistic) MWE ```` \documentclass{article} \usepackage{enumitem} \begin{document} \begin{enumerate}[resume*] \item Test \end{enumerate} \end{document} ```` This will print the text `resume,,` before the list starts. [My TeX.SE answer describes why](https://tex.stackexchange.com/a/715362/119),...

This adds the feature request by #3 . I based my code of the answer here https://tex.stackexchange.com/a/547398. Bassically the idea is that you use a new `autowidest` key instead of...

The package uses `topsep` for the margin before and after the listing. I wish to be able to set the bot margin differently from the top margin. Maybe have a...

Please add native support of Hebrew numerals. It should be possible to write ``` \begin{enumerate}[(א)] \item אוהל \item בית \item גמל גדול \end{enumerate} ``` and get the list > (א)...

From https://tex.stackexchange.com/questions/153380/enumitem-newlist-with-etaremune I cannot use etaremune with enumitem. Does anyone know any other way to do it? Basically a reverse numbered list with flexibility of defining the way it looks...

enhancement

Inline `description*` lists (when not `unboxed`) seem to add a spurious `\hfil` to every `afterlabel`. `itemize*` and `enumerate*` do not have this behavior. (Prompted by [this tex.sx question](https://tex.stackexchange.com/q/646374/48973).) In the...

bug
has workaround

Here is an example: ``` \documentclass{article} \usepackage{pifont,color,enumitem} \setlist[itemize]{label=\ding{43}} \setlist[enumerate,1]{start=172, ref=\ding{\value*}, % using \arabic* would work, but it isn't quite right .. % ref=\ding{\arabic*}, % % however, with label= \value gives...

I think this is a bug. I want to make an EnumitemKey to wrap my `\item`s in an environemnt. But the body of the `itemize` begins with a `\fi`. I...

Minor typographical suggestion. Currently, the MWE ```` \documentclass[12pt]{article} \usepackage{enumitem} \begin{document} \begin{enumerate}[start=-2] %here n := 2 \item This \item is \item just \item a \item demo. \end{enumerate} \end{document} ```` gives the...