beamer itemize 标签文本对齐

beamer itemize 标签文本对齐

为什么项目标签文本会溢出到我认为的侧边栏(图片左侧的蓝色水平列)上?

我也需要修复这个问题。出现此问题的文档使用\documentclass{beamer}并使用了外部主题:sidebar。

以下代码负责该列表:

 \begin{itemize}
 \item{Problems:}
 \item{Solutions:}
 \end{itemize}

标签文本位于侧边栏上方

答案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  

在此处输入图片描述

相关内容