Text Formatting ⇒ Align Counters and Equations side-by-side
Re: Align Counters and Equations side-by-side
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Align Counters and Equations side-by-side
Align Counters and Equations side-by-side
Code: Select all
\begin{enumerate}[##1,start=##2+\value{custcount}]
% Put your list parameters here
\item ##3
\end{enumerate}
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Align Counters and Equations side-by-side
Re: Align Counters and Equations side-by-side
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.
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Re: Align Counters and Equations side-by-side
Re: Align Counters and Equations side-by-side
-
- Posts: 402
- Joined: Fri May 20, 2011 9:41 am
Align Counters and Equations side-by-side
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}}