Tagged Questions
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 ...
5
votes
1answer
80 views
Automatic numbering of nested environments / items
I would like to have an environment, let's call it nested, which produces output like
Case 1: top level item 1
Case 2: top level item 2
Case 2.1: nested item 1
Case 2.2: nested item 2
Case 2.2.1: ...
3
votes
1answer
74 views
Is it possible to get the current item number and perform arithmetic on it in enumerate environment?
That is, suppose that I am at item n and I want to make a reference to item n - 3 without explicitly specifying it.
9
votes
1answer
166 views
New list environment: automatic enumeration with “a posteriori” format
This is a follow-up question to Nested enumerate labels with parent label appended plus a single set of enclosing parentheses
First and foremost, sorry for my English, I'm learning it currently.
...
4
votes
1answer
267 views
stack.sty and \end{environment}
I'm writing a multilevel itemize list environment to simplify the process of putting nested lists in Beamer slides, and I want it to support enumerate lists as well. The mitemize environment is ...
5
votes
2answers
208 views
Redefining \enumerate using \let - why does it behave this way and what can I do to bypass it?
The following code produces a result, that I find quite strange:
\documentclass{article}
\let\origenumerate\enumerate
\renewenvironment{enumerate}{\begin{origenumerate}}{\end{origenumerate}}
...
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
...