Salto de referencia diferente para el primer elemento después del cambio en el tamaño de fuente

Salto de referencia diferente para el primer elemento después del cambio en el tamaño de fuente

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 ( itemizelos 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}

ingrese la descripción de la imagen aquí

información relacionada