Beamerの説明のインデントを減らす

Beamerの説明のインデントを減らす

では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たとえば、の下に配置するBarにはどうすればよいですかFooBarBazZot? (たとえば、et al に配置されるのと同じようにamsart)。

答え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}

ここに画像の説明を入力してください

関連情報