5

Simple question. I want to use enumerate with \item, except the numbering goes backwards, e.g. beginning at n and ending at 1.

Simon Kuang
  • 1,861

1 Answers1

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}

enter image description here