答案1
这个问题并非特定于 beamer。在itemize
环境中,您可以用其他内容替换通常的项目符号(或文档序言提供的任何内容)。但是,这些内容将与项目符号位于同一位置。因此,如果这些其他内容太宽,它会在左侧超出范围。但是,这不是错误LaTeX
,而是有一个专门用于此目的的环境,description
您应该在此处使用它。我用 MWE 来说明这一点,强烈建议将其包含在问题中。我真的不知道您使用的是哪个主题,所以 MWE 产生了一些看起来有点不同的东西。
\documentclass{beamer}
\usetheme{Berkeley}
\useoutertheme{sidebar}
\begin{document}
\section{Introduction}
\section{Problems and Motivation}
\begin{frame}
\frametitle{Why are marmots so cute?}
\begin{overlayarea}{\textwidth}{\textheight}
\begin{description}
\item[Problems:] Marmots are cute beyond description.
\item[Solutions:]
\end{description}
\end{overlayarea}
\end{frame}
\section{References}
\end{document}
\endinput