5
votes
2answers
73 views

New enumeration

\begin{enumerate} \item \item \item \item \end{enumerate} How to define new numeration: I would like to have bigger spaces between every two points and equal indents for all points. ...
3
votes
1answer
58 views

Indenting First Paragraph in a List

I have an enumerate environment and each item contains several paragraphs. Normally, none of the paragraphs are indented, but using the enumitem package, I can set the listparindent to make all but ...
4
votes
2answers
86 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: ...
3
votes
2answers
97 views

Inserting non-indented mdframed object in outline

I want to be able to put an mdframed object inside of an outline environment without it being indented to the indentation level that I'm at, and so that I can continue the outline after the mdframed ...
2
votes
1answer
120 views

Indentation of a label enumi by using renewcommand in LaTeX

I need to set the format of the enumerate so each time I use it, it always behaves like this way for example: chapter 1 Algebra 1.1. Introduction... Definition D1.1. (Vector Space)... A vector space ...
3
votes
2answers
148 views

Inserting non-indented text in enumerate/outline

I'm trying to insert non-indented chunks of text/image/graphs into an outline. I would like to avoid nested enumerate environments. Anyone have a simple solution using something similar to what I have ...
6
votes
1answer
320 views

Bullet and number indenting in list

I would like to make a custom indenting for lists: Bullet or number is indented 1.2 cm from the left margin Text (all lines) is indented 1.8 cm from the left margin I am trying to use the enumitem ...
9
votes
1answer
116 views

Using \hangindent within enumerate

I would like to have a hanging indent within the paragraph of an enumerate item. I have the following: \begin{document} \begin{enumerate} \item Lorem ipsum dolor sit amet, consectetur adipiscing ...
6
votes
1answer
594 views

Hanging indent inside list

I would like items in a list to have a hanging indent (that is, for all lines after the first to be indented by a space or more), but the traditional \hangindent command doesn't work for this. ...
3
votes
1answer
159 views

Big indent when using long enumeration label

I started out with LaTeX today and already got my first question. I want to create a question document using enumerations. However when I give the first enumeration level a long label like "Question ...
4
votes
1answer
115 views

How do I change the indentation of wrapped lines in enumeration items?

When I use the following document (which uses \documentclass{article}): \documentclass{article} \title{Sample Document} \author{John Smith} \begin{document} \begin{enumerate} \item This is a short ...
6
votes
2answers
665 views

Hanging line indentation with enumerate

I'm writing a multiple choice text in latex, and I've been having some problems with the identation. I successfully indented all my text using \begin{enumerate} {\setlength\itemindent{15pt}\item[1)] ...
9
votes
3answers
547 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
1answer
365 views

Alternative Enumeration Environment

I have a theorem which lists a bunch of properties, and then I prove them one-by-one. Because the proofs are long, it looks awkward when every line is automatically indented by the enumerate ...
4
votes
2answers
371 views

Enumerate environments in abstract [closed]

Consider usage of the standard enumerate environment inside the standard (article) abstract environment: \begin{abstract} We discuss several exciting topics: \begin{enumerate} \item Topic 1, ...
3
votes
1answer
194 views

Add some words before counters of enumerate environment in beamer

I want to change the default style of enumerate from item1 item2 to  Stage 1. item1  Stage 2. item2 So I use \setbeamertemplate{enumerate item}{Stage \arabic{enumi}.} \begin{enumerate} \item ...
2
votes
1answer
5k views

Enumerated list indentation

I noticed that when I use enumerated list environment it produces an extra indentation to the document. So that if I'm using \usepackage[margin=3cm]{geometry} and then the enumerated list, the left ...
2
votes
2answers
1k views

How do I reduce the indentation of items in an enumeration?

I am trying to condense a two-level enumeration of some kind of requirements in a figure, with the text referencing the items of the enumeration. I am using a table to separate the two columns (tried ...
7
votes
1answer
473 views

Which settings control the indentations of items in an enumeration?

I have a bunch of enumerates, which are nested quite deeply (in a document with bylaws, so I can't avoid the nesting). This results in the labels being pretty wide, with label text like "6. § ...
9
votes
3answers
6k views

Specifying a no-indent for a list

I have the following: This is just normal text... \begin{enumerate} \item First Item ?\\\\ This is the text of the first item \item Second Item ?\\\\ This is the text of the second item ...