I am using the tasks package to layout answers to exercises. However the exercises are numbered 1, 3, 5, 7, etc. Of course tasks wants to increment by 1 to get 1, 2, 3, 4, etc. Is there anyway to set a increment value for tasks?
\documentclass{article}
\usepackage{tasks}
\begin{document}
\begin{tasks}label=\arabic*
\task $x^2$
\task $y^5$
\task $a^5$
\task $b^5$
\task $c^5$
\task $d^5$
\end{tasks}
\end{document}



\stepcounter{task}to the second and following task items. – Cicada May 28 '23 at 05:44\usepackage{tasks}
\begin{document} \begin{tasks}(3) \task $x^2$ \task $y^5$ \task $a^5$ \task $b^5$ \task $c^5$ \task $d^5$ \end{tasks} \end{document}`
– David Carlisle May 28 '23 at 12:33