Tengo problemas para obtener el mismo salto básico para cada elemento en el siguiente código.
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{XYZ}
\begin{itemize}
{\fontsize{18pt}{30}\selectfont
\item n is the number of states;
\item i is the start state.
\item j is one of the final states.
}
\end{itemize}
\end{frame}
\end{document}
Respuesta1
No incluya el cambio de fuente entre llaves ( itemize
los proporcionará de todos modos):
\documentclass{beamer}
\begin{document}
\begin{frame}
\frametitle{XYZ}
\begin{itemize}
\fontsize{18pt}{30}\selectfont
\item n is the number of states;
\item i is the start state.
\item j is one of the final states.
\end{itemize}
\end{frame}
\end{document}