I want to split the content of a bulleted list in a beamer presentation into several columns. Apparently this can be be easily acomplished through a tasks environment. My problem is that the bullets produced by tasks are different to those produced by itemize. This is what I have attempted so far:
\documentclass{beamer}
\usepackage{tasks}
\setbeamercolor{structure}{fg=RoyalBlue}
\useinnertheme[shadow]{rounded}\usesubitemizeitemtemplate{%
\tiny\raise1.5pt\hbox{\color{beamerstructure}$\blacktriangleright$}%
}
\begin{document}
\begin{frame}
\frametitle{Title}
Itemize:
\begin{itemize}
\item foo
\item bar
\item baz
\end{itemize}
Tasks:
\begin{tasks}label=\textbullet
%\begin{tasks}style=itemize % ERROR
%\begin{tasks}label=\labelitemi % ERROR
\task foo
\task bar
\task baz
\end{tasks}
\end{frame}
\end{document}
This is the output I get:
If I try any of the commented options the following error is thrown:
...
! Undefined control sequence.
\thetask ->\labelitemi
l.25 \end{frame}
?
How could I obtain exactly the same bullets?

multicolsdid the trick. Thank you, @user202729. – Tonechas Oct 31 '22 at 16:10\begin{multicols}{3} ... \end{multicols}{3}around it, it will also be arranged in 3 columns. – dexteritas Oct 31 '22 at 16:49