Estou tendo problemas para obter o mesmo salto básico para cada item no código a seguir.
\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}
Responder1
Não coloque a alteração da fonte entre colchetes ( itemize
irá fornecê-los de qualquer maneira):
\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}