Simple question. I want to use enumerate with \item, except the numbering goes backwards, e.g. beginning at n and ending at 1.
Asked
Active
Viewed 3,861 times
5
Simon Kuang
- 1,861
1 Answers
3
\documentclass{article}
\usepackage{lipsum}
\newcommand\reverselabel[1]{%
\def\theenumi{}%
\renewcommand\makelabel{\makebox[\dimexpr\labelwidth-3pt\relax][r]{%
\the\numexpr#1-\value{enumi}+1\relax}}}%
\begin{document}
\begin{enumerate}
\reverselabel{10}%
\item \lipsum[4]
\item text
\item still descending??
\end{enumerate}
Leaving list.
\begin{enumerate}
\reverselabel{3}%
\item New start label
\item text
\item still descending??
\end{enumerate}
\end{document}

Steven B. Segletes
- 237,551
\usepackage{etaremune}…hehehehe – nice XD – Sean Allred Mar 04 '15 at 04:10