匹配特定的枚举样式

匹配特定的枚举样式

我和同事正在将我们的旧教科书(使用一些过时的专有软件编写)更新为 LaTeX。但我们非常喜欢以前的布局和枚举样式。

特别是,我们有兴趣保留问题集的两列布局,以及枚举时的超大数字。我们可以用 LaTeX 匹配这种风格吗?提前致谢。(示例如下所示)

在此处输入图片描述

在此处输入图片描述

答案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}

相关内容