注意:重点不是修改枚举环境。我需要自动将其转换为类似表格的环境。
我想格式化一个enumerate
包含 4 个项目的环境
\begin{enumerate}
\item Fist point
\item Second point
\item Third point
\item Fourth point
\end{enumerate}
就像表格环境一样。输出应该类似于
\begin{tabular}{@{}rr@{}}
a) Fist point & b) Second point \\
c) Third point & d) Fourth point \\
\end{tabular}
我的第一个想法是使用inline
列表,但这不能保证项目 b)和 d)对齐。
很抱歉我还没有MWE
,但我正在寻找更多的想法来开始使用完整的答案。当我有更具体的东西时,我会编辑问题。
答案1
尝试这个:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{p{.49\textwidth}p{.49\textwidth}}%%change the number as required
a) First point & b) Second point \\
c) Third point & d) Fourth point \\
\end{tabular}
\end{document}
改良版:
\documentclass{article}
\usepackage{amsmath}
\newenvironment{newenumerate}{\begin{enumerate}\begin{tabular}{p{.49\textwidth}p{.49\textwidth}}
}{\end{tabular}
\end{enumerate}}
\begin{document}
\begin{newenumerate}
\item First point &
\item Second point\\
\item Third point&
\item Fourth point
\end{newenumerate}
\end{document}