2

For instance,

\documentclass{article}
\usepackage{tasks}
\begin{document}
\begin{tasks}(3)
\task A
\task B
\task C
\task D
\task E
\task F
\end{tasks}
\vspace{1cm}
\begin{tasks}(5)
\task A
\task B
\task C
\task D
\task E
\task F
\end{tasks}
\end{document}

I want to list my list so that it makes automatically the width of the page full, and it does not matter the way that can be achieved.

enter image description here

These are some of them, taken by my phone: enter image description here enter image description here

Ali
  • 195
  • 1
    I'm afraid your objective isn't entirely clear. Please edit your posting to explain in more detail what you're trying to achieve. And, do indicate whether a solution has to make use of the tasks package. – Mico Aug 23 '18 at 20:08

1 Answers1

2

To create a task which spans the while line, you can use the starred version \task*.

\documentclass{article}
\usepackage{tasks}
\begin{document}
\begin{tasks}(3)
\task A
\task B
\task C
\task A
\task B
\task C
\task! spans the whole line
\task*(2) spans 2 columns
\task C
\task* spans more than one column
\end{tasks}

\end{document}

enter image description here