我想开始用 LaTeX 编写简单的非数学文档,但由于我是初学者,我遇到了一些问题。基本上,我想使用枚举而不使用任何编号。
有一个更好的方法吗。
这是我的 MWE:
\documentclass[12pt]{article}
\usepackage{multicol}
\usepackage[inline]{enumitem}
\begin{document}
\textbf{To be - Simple present}
\bigskip
\begin{multicols}{3}
\begin{enumerate}
\item[] I am
\item[] I am not
\item[] am I?
\end{enumerate}
\end{multicols}
\begin{multicols}{3}
\begin{enumerate}
\item[] you are
\item[] you are not
\item[] are you?
\end{enumerate}
\end{multicols}
\begin{multicols}{3}
\begin{enumerate}
\item[] we are
\item[] we are not
\item[] are we?
\end{enumerate}
\end{multicols}
\begin{multicols}{3}
\begin{enumerate}
\item[] they are
\item[] they are not
\item[] are they?
\end{enumerate}
\end{multicols}
\end{document}
答案1
答案2
有很多方法可以简化此过程。除了最明显的解决方案(表格)外,您还可以只保留一个多列环境:
\documentclass[12pt]{article}
\usepackage{multicol}
\begin{document}
\subsubsection*{To be - Simple present}
\hspace{\parindent}\begin{minipage}{.6\linewidth} % to indent the columns
\begin{multicols}{3}
\obeylines\parskip1em
I am
you are
we are
they are
I am not
you are not
we are not
they are not
am I?
are you?
are we?
are they?
\end{multicols}
\end{minipage}
\end{document}
另一种方法是使用tabto
包。在这种情况下,列宽可以不同:
\documentclass[12pt]{article}
\usepackage{tabto}
\TabPositions{\parindent,.3\linewidth,.54\linewidth}
\begin{document}
\subsubsection*{To be - Simple present}
\parindent4em
\parskip1em
~\tab I am
\tab I am not
\tab am I?
\tab you are
\tab you are not
\tab are you?
\tab we are
\tab we are not
\tab are we?
\tab they are
\tab they are not
\tab are they?
\end{document}