0

I have the below list, but i want item a & b to be in the same lline, is there a way to do that?

\begin{itemize}
\item [$\rightarrow$]<1> a. 
\item [$\rightarrow$]<2> b.
\item [$\rightarrow$]<3> c.
\item [$\rightarrow$]<4> d.
\item [$\rightarrow$]<5> g 
\end{itemize}
Diana
  • 1,285
  • 7
  • 12
  • Uhm, your use of <1>, <2>, ... suggests that you are using beamer... – campa Aug 13 '20 at 14:30
  • Yes I’m using it in Beamer – Diana Aug 13 '20 at 14:31
  • That was not obvious from your question, thus our standard comment for new users: please provide a full but minimal example that others can copy and test as is. Here we have no idea about document class (we now know this is beamer) plus appropriate preamble. – daleif Aug 13 '20 at 14:48

2 Answers2

1

if what you want is to replace the items, you can use "only":

\begin{frame}
\begin{itemize}
\only<1>{\item [$\rightarrow$] a.}
\only<2>{\item [$\rightarrow$] b.}
\only<3>{\item [$\rightarrow$] c.}
\end{itemize}
\end{frame}
M.G.
  • 21
0

For items in two columns tasks is an easy solution:

\documentclass{beamer}
\usepackage{tasks}

\begin{document} \begin{frame} \begin{tasks}label=$\rightarrow$ \task a \pause \task b \pause \task c \pause \task d \pause \task g \pause \end{tasks} \end{frame} \end{document}

if you want to see other ways of doing this you can see, for example, this question.

Luis Turcio
  • 2,757