글꼴 크기 변경 후 첫 번째 항목에 대해 다른 기준선 건너뛰기

글꼴 크기 변경 후 첫 번째 항목에 대해 다른 기준선 건너뛰기

다음 코드의 각 항목에 대해 동일한 기본 건너뛰기를 얻는 데 문제가 있습니다.

\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}

답변1

글꼴 변경 사항을 중괄호로 묶지 마십시오( itemize어차피 제공됩니다).

\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}

여기에 이미지 설명을 입력하세요

관련 정보