For some reason, if one sets a margin using the geometry package, this causes an alignment problem with the tasks package:
MWE:
\documentclass[12pt]{article}
\usepackage{amsmath,geometry,tasks}
\geometry{a4paper, margin=2cm}
\NewTasks[counter-format={tsk[a])}]{problems}[\item](4)
\begin{document}\raggedright
\begin{enumerate}
\item Prove the following:
\begin{problems}(4)
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\item $x$
\end{problems}
\end{enumerate}
\end{document}
Interestingly, at certain values, e.g. margin = 1in, there is no problem. But at other values, such as margin = 0.5cm, which is smaller than a 1in margin, there are problems. This eliminates a minimum width issue. What is the solution to this?



\raggedrightdoes some magic internally, and is being responsible for the issue you see. – Johannes_B Sep 17 '17 at 06:42