答案1
你可以做你想做的事enumitem
。这是一个双列格式的超大数字的示例。
\documentclass{article}
\usepackage{enumitem}
\usepackage{xcolor}
\usepackage{multicol}
\newlist{problems}{enumerate}{1}
\setlist[problems]{
label=\raisebox{-4pt}{\huge\color{gray}\arabic*},
before=\begin{multicols}{2},
after=\end{multicols}
}
\begin{document}
\begin{problems}
\item A first problem with a text long enough to span more than a single line
\item A second problem
\item A third problem
\item A fourth problem
\end{problems}
\end{document}