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} ...
3
votes
3answers
45 views

How to align all description labels with section

I am using this code \documentclass[paper=a4, paper=portrait, pagesize=auto]{scrartcl} \usepackage[inline]{enumitem} \usepackage[table]{xcolor} \definecolor{orange}{HTML}{FFC296} \begin{document} ...
2
votes
1answer
51 views

How can I make the items aligned in section?

I have this code \documentclass[paper=a4, paper=portrait, pagesize=auto]{scrartcl} \usepackage[inline]{enumitem} \setlist[enumerate,1]{label=\textit{\alph*)}} \usepackage[table]{xcolor} ...
7
votes
2answers
74 views

is it posible to make a multiline itemize justifying the text inside

I am writing technical specs of a programming API. I am using itemize to highlight the method signature as it follows: \begin{itemize} \item[\texttt{packeteer.send(message)}] \hfill \\ is ...
2
votes
1answer
38 views

Can enumerated lists be centred?

For enumerated list such as: \begin{enumerate} \item One \item Two \item Three \end{enumerate} the center and centering commands don't seem to work, and the list sticks to the left hand side of the ...
4
votes
2answers
97 views

Alignment of text in itemize environment

I would like to generate a list of "Aims" (1,2,3...etc) as the \item label, with the text for the aim located adjacent (with \hspace{Xmm}). For items that exceed the width of the line, the alignment ...
2
votes
1answer
54 views

Problem using align in enumerate environment

I'm creating a list with enumerate of both positive and negative numbers, and would like the numbers to be lined up with one another, i.e. all in the same column. I also have a second list with ...
6
votes
2answers
107 views

How to move an enumerate environment to the right? [duplicate]

How can I horizontally align \begin{enumerate} more to the right? At the moment I'm using the code below: \begin{enumerate} \item sometext \item sometext \item sometext \end{enumerate} But it goes ...
4
votes
0answers
80 views

Overlapping label and text in description environment [closed]

I'm relatively new to LaTeX, and I am having this problem with the description environment: \documentclass{article} \usepackage{amsmath} \usepackage{bm} \usepackage{IEEEtrantools} \usepackage{amsthm} ...
5
votes
3answers
94 views

Aligning items inside a list

I'm trying to recreate a list in some work I'm doing and struggling to get all of the component parts to align. The list in the middle there is what I'm trying to replicate. Does anyone have any ...
4
votes
2answers
84 views

Disable indentation in enumerate temporarily

I would like to place an unindented \fbox inside an enumerate environment. \begin{enumerate} \item Some text. \par\fbox{a} \item Some more text. \end{enumerate} The above code produces: ...
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 ___ ...
1
vote
1answer
69 views

Alignment for equations with numbering in enumeration environment and in environment of cases

I have problem of alignment in the following, please check and suggest solution: \begin{enumerate} \item \begin{equation} \kappa_{a,b}(t)=\begin{cases} e^{at}, & 0\leq ...
7
votes
1answer
90 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 ...
5
votes
1answer
124 views

right description list LaTeX beamer

How to do right align a description list using beamer? Name | Joel Spolsky Address | Some address Using the enumitem package as suggested in Description list with right alignment of ...
3
votes
1answer
270 views

Alignment near left margin in beamer

I'm trying to get beamer to have the same left margin for itemize environments and normal text (and for the symbols in the itemize environment to be aligned with the slide title). That is, I want a ...
2
votes
2answers
83 views

Properly align text in description

I need to illustrate cases, that is why I am using the description environment: \begin{description} \item[Caso 1] Esiste una computazione $s_1, s_2, \ldots, s_k$ di $\mathcal P$ che comincia con ...
12
votes
3answers
233 views

Enumerate list not showing when using parallel package

I want to divide a paragraph with enumerate. First I use package "parallel": \documentclass{article} \usepackage{color} \usepackage{parallel} \begin{document} ...
3
votes
1answer
137 views

List item text alignment

I have nested enumeration with a long labels. As a result, the text in items becomes very shifted to the right. I want that this text in items won't be moved at all (the same horizontal offset as the ...
3
votes
1answer
126 views

Enumerate numbering is out of page

I have nested enumerations in my article. The numbering of enumeration is modified. \renewcommand{\labelenumi}{\bfseries\thesubsection.\arabic{enumi}} ...
3
votes
1answer
292 views

How to center a text line within an itemize environment?

How to center a text line within an itemize enivornment ? What I tried: \documentclass[a4paper]{article} \begin{document} \begin{itemize} \item {\centering text to center} \end{itemize} ...
3
votes
4answers
191 views

Writing CV, need some advice on achieving structure similar to this

I'm a LaTeX beginner and under a heading (e.g. Interests) I want to have the text laid out as above. Specifically, my problem is getting the part on the right to stay aligned to the line above when ...
6
votes
3answers
99 views

How can I set a list inside a definition in latex?

I need to write a definition that has a list of items. What is science : Lorem ipsum dolor sit amet, consectetur adipiscing elit. - List item 1 - List ...
7
votes
3answers
145 views

Undesirable alignment in series of 'enumerates'

(I'll preface this question by saying that there seem to be quite a few question on tex.se with keywords 'align' and 'enumerate', but it seems as if they all deal with questions regarding alignment ...
2
votes
1answer
204 views

Align items on the left

Please, how can I align items on the left (reduce horizontal spacing) ? \begin{itemize} \item[\textbullet] first \item[\textbullet] second \item[\textbullet] third \end{itemize}
7
votes
1answer
241 views

“Nice” way to list pro and contra aspects

I am currently evaluating different alternatives and would like to present a few pro and contra arguments for each possibility. My first thought was to present these arguments side-by-side using two ...
4
votes
2answers
140 views

Itemized table layout

quick question: I copied this code: \documentclass{article} \usepackage{amsmath,amssymb,calc} \def\horizlist#1#2#3{% \setcounter{enumi}{0}% #3% \flushleft \newlength\stringlength ...
11
votes
1answer
272 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 ...
2
votes
1answer
103 views

Centered, left-aligned list

I'm attempting to left-align a centered list of elements. \begin{center} \begin{align} \begin{description} \item[] lorem \item[] ipsum \item[] lorem \item[] ipsum \end{description} \end{align} ...
6
votes
1answer
971 views

Problem with \hbox inside list

In the example below, the first \hbox to \linewidth ends up at the left of the page, despite the fact that it is inside an itemize environment. The presence of \hspace*{0pt} before the second seems to ...
5
votes
1answer
99 views

Description list with item and body in separate columns

I try to achieve the following layout with a description list Item1 Description of the item where wrapping aligns like this. Should also handle itemize environment in the description ...
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
544 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 ...
8
votes
2answers
2k views

Justify text inside itemize environment with beamer class

I would like to justify text inside an itemize environment with the beamer class. Text appears to be justified by default with the article class, but not with the beamer class. The following code ...
4
votes
1answer
613 views

\rule command constructing line not extending far enough left

I am trying to put a horizontal line between homework problems, like this: \begin{description} %stuff . . . \rule{\linewidth}{0.4mm} \item[Exercise 1] %stuff \rule{\linewidth}{0.4mm} ...
4
votes
1answer
385 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 ...
4
votes
1answer
945 views

How to align description item labels on the right?

I have seen description-list-with-right-alignment-of-labels that explains, how to align description labels on the right. However the presented solution sets the lengths globally whereas I look for a ...
2
votes
1answer
306 views

How to get flushleft to the page margin within enumerate environment?

How do I get the headings to come to the page margin inside of the enumerate envirnoment. \documentclass{article} \usepackage{lipsum} \begin{document} \begin{flushleft} Heading \end{flushleft} ...
5
votes
2answers
316 views

Flexible/automatic alternative to multienum?

I'd like to typeset the items in an enumerate environment side-by-side. Preferably, each item would take up only as much space as necessary, perhaps plus some extra padding, and the next item would be ...
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
682 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 ...
6
votes
6answers
979 views

An enumeration of equations with aligned equal signs

I'd like to have something like the following: \begin{enumerate} \item $1 + 1 = 2$ \item $1 = 2 - 1$ \end{enumerate} The thing is, I'd also like the equals signs to be aligned. But I'd like the ...
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 ...
5
votes
2answers
199 views

How do you align \@hangfrom paragraphs?

I'm trying to write up an interview with numbered questions to look something like this: Q1. What is your name? A. My name is Sir Lancelot of Camelot. Q2. What is your quest? A. To seek ...
1
vote
1answer
562 views

How to align long labels in a list to the left margin?

I would like to create a list in LaTeX in which: 1. the longest label is aligned to the left margin, 2. the labels can be composite and look like "(1)(a)", 3. the labels, which can be of varying ...
2
votes
2answers
2k views

Latex multicol + itemize

I'm using the pdflatex interpreter and trying to get the following behavior using an itemized list in a multicolumn environment: [space]* item1 *item2 [space]* item3 *item3 I can get somewhat ...
6
votes
1answer
500 views

Alignment within enumerate

I'm looking for a way to sort of combine the features of enumerate (and other list-like environments) with features of tabular environments. Specifically, what I like about enumerate is that it ...
1
vote
1answer
637 views

amsart and enumerate environment

I'm using the amsart documentclass. Now the equation numbers are aligned to the left, I'm okay with that but what bothers me is the following: If I have equations in an enumerate environment it ...
12
votes
2answers
4k views

How can I center text/math inside a list environment?

When using math (display) mode in conjunction with a list environment, the displayed material is not truly centered on the page; it is only centered with respect to the indentation of the item. ...
1
vote
2answers
366 views

Enumeration flush right

How can I do enumeration like this: Some loresipsum, lores ipsume loresipsum, lores ipsume loresipsum, lores ipsume loresipsum, lores ipsume loresipsum, lores ipsume loresipsum, lores ipsume ...

1 2