1

I want to make an example with a two column enumerated list, but with enough space for the kids to write their answers on the in the example; attached is a photo of what I am looking for.enter image description here

2 Answers2

1

I turned @jfbu's comment into an answer.

\documentclass{article}
\usepackage{tasks}
\begin{document}
\settasks{after-item-skip=4em,
          after-skip=2cm,
          label-width=3ex,
          counter-format=(tsk[a]),
          column-sep=2em
          }

\begin{tasks}(2)
\task First left column
\task First right column
\task Second left column
\task Second right column
\task Third left column
\task Third right column
\end{tasks}

\end{document}

enter image description here

AboAmmar
  • 46,352
  • 4
  • 58
  • 127
0

Making some editions to the code from Equal spacing with enumerate and multicol, we have

enter image description here

\documentclass{article}
\usepackage[margin=1.5cm]{geometry}
\usepackage{amsmath}

\newlength{\subproblemhang}
\newcommand{\subproblem}[3][.45\linewidth]{%
  \settowidth{\subproblemhang}{(#2)~}%
  \begin{minipage}[t]{#1}
    \hangindent=\subproblemhang\hangafter=1%
    (#2)~#3
  \end{minipage}%
}
\newcommand{\dg}{\ensuremath{^\circ}}

\begin{document}
\begin{enumerate}

%Problem 1
\item[] \textbf{Exercise \#2}. Consider the trigonometric equation $\sin(\theta)=-\dfrac13$ over the interval $0\dg\leq\theta\leq360\dg$. \\

\subproblem{a}{determine the reference angle for this problem by evaluating $\sin^{-1}(1/3)$. Round to nearest \textit{tenth} of a degree.}\hfill
\subproblem{b}{In what quadrants is the sine function negative?}

\vfill

\subproblem{c}{Draw the rotation diagrams for the two angles that terminate in the quadrants specified in (b) that have the reference angle from (a).}\hfill
\subproblem{d}{Using your answers from (a), (b) and (c), solve the equation $\sin(\theta)=-\dfrac13$ over the interval $0\dg\leq\theta\leq360\dg$. State your answer to the nearest \textit{tenth} of a degree.}

\vfill

%Problem 2
\item Second problem goes here.

\vfill

\end{enumerate}
\end{document}
Cragfelt
  • 4,005