1
vote
1answer
43 views

How can I left align the labels in a customized description list

I have this code: \SetLabelAlign{rightbox}{\hss\llap{#1\quad}} \setlist[description,1]{align=rightbox,labelsep=0pt,leftmargin=0pt} \section{Project 55d5396fed} ...
6
votes
1answer
44 views

Problem with enumitem and \raggedright [duplicate]

I want my items in lists (enumerate, itemize and description) to be raggedright. So I use enumitem package to make things easier \usepackage{enumitem} \setlist[enumerate]{before = \raggedright}% In ...
6
votes
1answer
81 views

Horizontal alignment of margin notes in nested enumitem list

I would like to be able to 'tag' certain list items in an enumitem list with a mark in the left margin. I would like the marks in the left margin to be horizontally aligned with respect to each ...
6
votes
1answer
87 views

How to get a properly indented custom enumerate list (with checklist-style blanks)?

I'm trying to make an enumerated checklist that looks like this: Paragraph text here that says really cool stuff. Notice how the list after is properly indented ___ 1. Thing 1 ___ ...
7
votes
1answer
88 views

labelsep in enumitem: stretch ignored

As the title says: labelsep setting in the enumitem package ignores the stretch part. I would be happy to have a stretch there (in the end actually the current font's interword stretch achieved by ...
11
votes
1answer
270 views

Description list with aligned descriptions

This forum thread is exactly what I'm looking for. I want my description environment to produce this: Label is long text lab2 blalballalaa label3 possible second rule label ...
5
votes
1answer
3k views

Multiline item indent

I am currently writing a set of steps for my lecture notes on circles but when the description of the step is too long, becomes multiline, the enumerated environment does not left indents properly as ...
9
votes
3answers
543 views

Leftalign labels with enumitem

I'm using the enumitem package to define a legal list: \usepackage{enumitem} \newlist{legal}{enumerate}{10} \setlist[legal]{label*=\arabic*.} The output for a list looks like this: 1. foo 1.1 ...
4
votes
1answer
383 views

Better alignment for enumitem list

In the following screenshot, the alignment of the 2nd A) and the space between the label of the 2nd list and the fraction have been obtained empirically n: see \hspace*{1.375em} and ...
11
votes
1answer
2k views

Description list with right alignment of labels

I want a description list that looks like the following: Name | Joel Spolsky Address | Some address Some zipcode Telephone | +31 123 456 E-Mail | ...
13
votes
1answer
679 views

Centre roman numbers in enumerate environment

I have an enumerated list that uses roman numbers. \documentclass{article} \usepackage{enumitem} \begin{document} \begin{enumerate}[label=\roman*] \item first entry \item second entry ...
11
votes
3answers
8k views

How to make enumerate items align at left margin?

I would like to have my lists to have no indent for the top level, i.e. having the same left margin as the surrounding paragraph, with just enough space for the widest label to fit: Paragraph text ...