I would like to know how to control three aspects of the tasks environment:
- How to eliminate extraneous space before the task counter,
- How to control the space between tasks
- How to set the paragraph formatting universally
In the following example, I would like the task numbers 1 and 5 to be flush with the left margin. I would also like to add space between the tasks so that, for example, task 5 and 6 are not so close together. Finally, I would like to set the paragraph formatting within each task to \raggedright without having to manually do it.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[margin=1in]{geometry}
\newcommand\sample{This is a sample sentence that spans more than one line of the final documents.}
\usepackage{tasks}
\usepackage{enumitem}
\setlength{\parindent}{0pt}
\begin{document}
\noindent
\raisebox{0pt}[0pt][0pt]{\rule[-4in]{0.4pt}{4in}}%%
\sample \sample \sample
\begin{tasks}[counter-format={\bfseries tsk[1].}](4)
\task This
\task that
\task something else
\task something even more
\task \sample \sample
\task \sample more more more
\task \raggedright\texttt{\detokenize{\raggedright}} set here. \sample
\task something
\end{tasks}
\end{document}




enumitempackage would include a similar image as well. – Peter Grill Nov 02 '14 at 00:27