Text Formatting ⇒ Align Counters and Equations side-by-side
Re: Align Counters and Equations side-by-side
Well you can set these parameters between \begin{enumerate} and \end{enumerate} in the environment definition.
CDbile
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Align Counters and Equations side-by-side
What about setting those parameters to the inner nested list?
Align Counters and Equations side-by-side
You didn't understand me. You can here: (code quoted from the big \newenvironment line)
Code: Select all
Code, edit and compile here:
\begin{enumerate}[##1,start=##2+\value{custcount}]% Put your list parameters here\item ##3\end{enumerate}
CDbile
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Align Counters and Equations side-by-side
How can one know the default value of the space between the label and the first item in an enumerate* environment using enumitem package?
Re: Align Counters and Equations side-by-side
I suggest you start a new topic for this question and mark this thread as solved (if you agree it is !)
But I also don't see why you wouldn't have default values of enumerate in custenv. We just put an enumerate in a minipage, we didn't change any special layout.
But I also don't see why you wouldn't have default values of enumerate in custenv. We just put an enumerate in a minipage, we didn't change any special layout.
CDbile
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Align Counters and Equations side-by-side
oh no i don't mean about enumerate.. im talking about enumerate* with an asterisk because if I type the same list using enumerate* (first post code) then I don't need to adjust the spacing of the label and the first item... it is already set as a default and I like the spacing with enumerate* Can enumerate* be substituted for enumerate for the special codes we used for custenv such that horizontal spacing is set using enumerate* and vertically aligning the items is set using custenv ?
Re: Align Counters and Equations side-by-side
Of course, and I'm also sure that you can find where to put the two stars...
CDbile
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Align Counters and Equations side-by-side
Here? lol
Code: Select all
\newcommand{\custitem}[3]{\begin{minipage}[t]{2.5in}\begin{enumerate*}[##1, start=##2+\value{custcount}]\itemindent=-1.11em \item ##3\end{enumerate*}\end{minipage}}