Tagged Questions
3
votes
2answers
72 views
referencing an item from enumerate in an article calss
I misspoke I meant I used enumerate not cases sorry.
Is it possible to reference a case?
I have \begin{enumerate} and then cases 1 to 4 where each case is a rather detailed.
I would like the refer ...
2
votes
1answer
62 views
Numbering exceeding the 26 letter alphabet
After reading this answer http://tex.stackexchange.com/a/52604/10898 I am unable to employ the alphalph package to replace the counter in either levels. See the code below:
...
6
votes
1answer
120 views
Controlling parindent in enumerate inside customized list environment
I'm trying to control the indentation of paragraphs in an enumerated list that is inside a customized list environment. I find that changing \parindent in the inner list has no effect.
Here's an ...
3
votes
2answers
72 views
Optional argument to \item to appear in brackets after the counter
Usually, when you have the following document:
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}
\item Mary
\item[had] a little
\item lamb
\end{enumerate}
...
2
votes
2answers
75 views
enumitem: enumerate in a theorem environment
I use the enumitem package:
\usepackage[shortlabels]{enumitem}
And I put some numeration like this in a theorem environment with \theoremstyle{plain}:
\begin{prop}
We have
...
1
vote
0answers
20 views
enumitem-shortlabels: How to change the counter of items? [duplicate]
I use the enumitem package with shortlabels.
\usepackage[shortlabels]{enumitem}
Now I've got
\begin{enumerate}[(L 1)]
\item blablabla
\item blablabla
\end{enumerate}
and it goes like ...
9
votes
3answers
149 views
How to “bubble in”/color fill an item counter ((A),(B),(C),…) in an enumerated list
I'm trying to make an answer explanation guide for a test where the correct answer is "bubbled in".
I've tried using the enumitem package and tikz as shown in this post (Enumerated list with blue ...
3
votes
3answers
171 views
Enumeration with several items per line, several lines and nicely formatted
Based on Alan's answer here, I would like to be able to create nicely formatted "inline" enumerated lists.
The issue I have is that the space between items on a line is always fixed, which does not ...
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 ...
6
votes
1answer
88 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
___ ...
3
votes
2answers
96 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 ...
1
vote
1answer
97 views
Enumerate and numbering
We are using the enumerate in the following form
\begin{enumerate}[leftmargin=*,label=\bfseries${\textbf{{C}}}_\arabic*$.]
\item
\end{enumerate}
Which produces out-put as C_1, C_2, ...
But we ...
3
votes
2answers
92 views
Annoying box next to the letter
Ηow can I get rid of this annoying box next to the letter as well the full stop
update-1: but to keep the Greek alphabet to the second level
\documentclass[b5paper,10pt]{book}
...
6
votes
1answer
313 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
2answers
169 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 ...
8
votes
2answers
166 views
How to create an inline list via a macro
I want to create a macro that yields an inline lists. I can easily do this using enumerate* form the the enumitem package, but when I attempt to wrap this in a macro, I get:
Extra }, or forgotten ...
8
votes
1answer
103 views
Unbold referenced label
I'm fetching references from an enumeration. The problem is that I want the labels of the enumeration to be bold (hence, I've added a \textbf command) but I want the references in the text to be plain ...
5
votes
1answer
215 views
How to create numbered examples potentially with letter suffixes, e.g. using enumitem?
I have a weird numbering problem in a manuscript that uses sequentially numbered text examples. When an example demonstrates something which is e.g. wrong and later to be corrected they have suffixes ...
7
votes
1answer
668 views
how to define inparaenum in the preamble
I'm using both \inparaenum and \enumerate in my thesis and I would like them to set them in the preamble so that each item is set off with a). I used
\setenumerate[0]{\itshape a\upshape)}
in the ...
6
votes
1answer
296 views
Create a bold enumerated list with parenthesized lower case letters
I can create an enumerated list with parenthesized lower case letters by using the enumitem package (with the [shortlabels] option) in the preamble and then using \begin{enumerate}[(a)]. I can also ...
4
votes
1answer
644 views
Use ball items in enumerate list with enumitem package
In Beamer, I would like to be able to use ball items (with a number inside) in an enumerate list whose layout is defined by the package enumitem.
This question is closely related to Make enumerate ...
7
votes
1answer
201 views
How to alternate labels' styles in enumerated lists?
How can I alternate the display of an enumerated list's counter according to which command I've used? E.g., I want \foo{poor Yorick!} to look like (9) poor Yorick! but I want \bar{Joelle} to have a ...
4
votes
1answer
572 views
Possible incompatibility with enumitem
If I compile the following:
\documentclass[]{article}
\usepackage{enumerate}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[1.]
\item This is the first
\item This is the second
...
5
votes
1answer
199 views
How do I cross-reference custom labels in my enumitem lists without having the punctuation show up?
I am using enumitem to handle my enumerate and itemize lists. I have a list like
\begin{enumerate}[label=Step \arabic{enumi}.]
\item step the first \label{en:step-1}
\item el secundo ...
3
votes
1answer
288 views
Align \item labels at top of mdframed box
By default, enumerate's \item labels align with the top of the text:
However, if the text happens to be a mdframed box, the labels align with the bottom of the box which does not look so good:
...
5
votes
1answer
203 views
Replace \item with \MyItem to box each list member with an mdframed
Since it was pointed out that redefining \item can be dangerous in strange interaction between `mdframed` and `\item`, I am wondering if there are going to be problems with this solution.
My goal is ...
2
votes
1answer
141 views
enumerate environment and graphics
If I have an item in an enumerate environment, which only contains a figure (or table etc), the bullet point of the enumerations alignment goes weird. For example:
\begin{enumerate}[(a)]
\item
...
21
votes
2answers
349 views
Modifying labels on some enumerated items
In an enumerate environment, I want a few (not all) of the items to have asterisks which appear before the number (I don't feel strongly about whether the number or the asterisk is horizontally ...
3
votes
1answer
104 views
Escape the ] character [duplicate]
Possible Duplicate:
Enumerated list with square brackets
Using the help of this answer, I am trying to create a list in which each item is numbered by [1], [2], etc.
...
9
votes
3answers
546 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 ...
6
votes
2answers
634 views
Enumerated list with blue circles and number inside it
I am creating a manual for an application and I would like to provide step by step directions of the application. For the step numbers, I would like to use big, blue circles with white numbers in it. ...
7
votes
3answers
515 views
newenvironment enumerate
I'd like to get a list with the label $\mathscr{G}_1$, where G_1 is the first item in the list.
If I use
\newenvironment{enumeratescr}{\begin{enumerate}
[labelindent=\parindent, ...
3
votes
1answer
292 views
Repeating enumerated list items and their original number
Sometimes enumerated lists are used to list example sentences which are referred to from the text by their numbers in the list. But as such references are made from far away pages it might be ...
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 ...
6
votes
1answer
673 views
Make enumerate have beamer themes when using enumitem
I really like the enumitem package, but it seems to have compatibility issues with beamer. I could get them to work together for itemize lists by using the following:
...
8
votes
1answer
1k views
A five level deep list
I would like to create a five level deep list using the enumitem package. I found this suggestion on stackoverflow and implemented it as follows
\documentclass[twoside,a4paper,12pt]{report}
...
2
votes
1answer
318 views
Customizing enumerations and itemizations
Is there a guide out there on how to customize the enumerate and itemize instances in my code? (I'm using the Memoir class in LaTeX for Windows, and I have the enumitem package included.) I want to ...
13
votes
1answer
686 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
...
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 ...
5
votes
2answers
993 views
Coloured numbering in a list?
Is there a way to obtain coloured numbering in an enumerate list?
\begin{enumerate}
\item First
\item Second
\item Third
\end{enumerate}
I'd like the 1, 2, 3 to be in blue. I thought this should be ...
4
votes
2answers
485 views
A question about customizing ref in enumitem package
I'm experimenting with enumitem version 3.4 (released Aug 2011) a little but facing a problem in customizing the ref.
What I'm trying to reach is simple: Have list label in the form 1.1.3. for ...
5
votes
3answers
8k views
LaTeX enumerate - bold item with non-bold text
I'm trying to customize the environment enumerate where the \item is bold but the text is not bold. What I've tried is (at the suggestion of one of the google-results):
\let\origitem\item
...
2
votes
1answer
115 views
make numname and enumitem work together
numname is a package that allows you to write out (e.g.) chapter titles in words. It's basically some code taken out of memoir.cls apparently.
There appears to be something wrong with the code, ...
6
votes
1answer
730 views
Suggestions for transitioning from paralist to enumitem package
Based on the suggestions on What are the differences between using paralist vs. enumitem, I am transitioning from using paralist to enumitem and have encountered a few issues.
There are a few places ...
5
votes
2answers
619 views
Resuming a list started within a minipage
I have a minipage with a figure, and I want part (a) to be on the right of this figure (so part (a) is in a 2nd minipage), and the remaining parts (b), (c), etc to be below. The insights provided in ...
1
vote
1answer
256 views
`enumitem` package can't be used in conjunction with `numprint` (or how to set enumerate item has the type of 01, 02, etc.)
I want get a enumerate list has shape 01, 02, etc. The LaTeX code
\documentclass{article}
\usepackage{enumitem}
\usepackage{numprint}
\begin{document}
\nplpadding{2}
...
5
votes
2answers
379 views
Robust method to apply Hebrew numeral in an enumeration list?
The difficult bit is that the enumitem package has a closed list of numbering formats, and that \hebrewnumeral is not part of them. I have
\renewcommand{\theenumi}{\hebrewnumeral{\value{enumi}}}
...
1
vote
1answer
424 views
How do I use the “enumerate mini template” of the beamer class?
I'm working on a document and tried to change the way enumeration items look with the line
\setbeamertemplate{enumerate mini template}{i)}
found in the documentation BeamerUserGuide on page 114.
...
7
votes
1answer
736 views
Refer to customized `enumerate` counter
Background
I'm typesetting a list of conditions for a certain mathematical object. There are three conditions. Later on I wish to provide an equivalent condition for the third. Therefore, it would be ...