에서 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
다음 장소 :Zot
FooBarBazZot
예를 들어 baz
, 아래 에 어떻게 배치합니까 ? (예를 들어 et al에 배치된 것처럼 ).Bar
FooBarBazZot
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}