비머의 설명에서 들여쓰기 줄이기

비머의 설명에서 들여쓰기 줄이기

에서 beamer텍스트가 description items과도하게 들여쓰기되었습니다.

\documentclass[14pt,handout]{beamer}
\begin{document}
\begin{frame}\frametitle{}
  \begin{description}
  \item[FooBarBazZot] - foo bar \\ baz zot
  \end{description}
\end{frame}
\end{document}

bar다음 장소 :ZotFooBarBazZot

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

예를 들어 baz, 아래 에 어떻게 배치합니까 ? (예를 들어 et al에 배치된 것처럼 ).BarFooBarBazZotamsart

답변1

를 사용하여 들여쓰기를 수정할 수 \setbeamersize{description width=0.57cm}있으며 필요한 값을 사용해 보세요.

\documentclass[14pt,handout]{beamer}

\setbeamersize{description width=0.57cm}

\begin{document}
\begin{frame}\frametitle{}
  \begin{description}
  \item[FooBarBazZot] - foo bar \\ baz zot
  \end{description}
\end{frame}
\end{document}

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

관련 정보