Is there a way to have a enumerate environment that increment the counter every three item?
I already see this question: Enumerate pattern: 1, 1, 2, 2, 3, 3, ... , etc
but I'm looking for something more simple.
this should work but i don't want to set the counter every item:
\begin{enumerate}
\item First Item
\setcounter{enumi}{0}
\item Another first item
\setcounter{enumi}{0}
\item latest first item
\item Second Item
\setcounter{enumi}{1}
\item Another second item
\setcounter{enumi}{1}
\item latest second item
\end{enumerate}
I want something like this:
\begin{enumerateeachthree}
\item First Item
\item Another first item
\item latest first item
\item Second Item
\item Another second item
\item latest second item
\end{enumerateeachthree}
In both example the output must be: 1) First Item 1) Another first item 1) latest first item 2) Second Item 2) Another second item 2) latest second item


