[Tex/LaTex] Something like \enumerate, but with custom numbers at each \item

#enumeratelistsnumbering

I'm doing homework from a particular book, and each question is numbered after the page number and the question number. For example 52.2, 52.9, 53.13, etc. (Note that they are not sequential.)

How do I do something that will work like the enumerate environment, but instead of 1. 2. 3., etc. at each \item, I put a custom number?

Best Answer

You could simply use the optional Argument of \item

\documentclass{scrartcl}

\begin{document}
\begin{itemize}
    \item [2.9] Foo
    \item [53.2] Bar
    \item [69.11]
\end{itemize}
\end{document}

I hope that’s what you wanted to do …

Related Question