나는 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
테이블로? 코드가 더 짧고 명확해졌습니다.
\documentclass[12pt]{article}
\usepackage{tabularx}
\begin{document}
\noindent\begin{tabularx}{\textwidth}{@{} *{4}{X} @{}}
I am & I am not & am I? \\
you are & you are not & are you? \\
we are & we are not & are we? \\
they are & they are not & are they?
\end{tabularx}
\end{document}
답변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}