Itemize 环境的自动宽度框

Itemize 环境的自动宽度框

使用 varwidth 和 tikz 定义一个 newenvironment,以获取宽度等于其中内容的块。除非涉及分项,否则它可以正常工作。这里给出了 MWE。

\documentclass[]{beamer}

\usepackage{tikz}
\usepackage{varwidth}
\tikzstyle{example-box} = [fill=yellow, rectangle]

\newenvironment{autowidthblock}{
\begin{tikzpicture}
\node [example-box] (box)
\bgroup 
\begin{varwidth}{\linewidth}

}{
\end{varwidth}
\egroup;
\end{tikzpicture}
}

\begin{document}

\begin{frame}
\begin{autowidthblock}
With normal sentences, the width is rightly fit
\end{autowidthblock}

\begin{autowidthblock}
\begin{itemize}
\item With itemize environment,
\item The width is not auto-set
\item Instead spans the entire textwidth
\end{itemize}
\end{autowidthblock}

\end{frame}

\end{document}

在此处输入图片描述 有人能建议一种方法来让分项/枚举的宽度也自动调整吗?提前致谢。

相关内容