Beamer 中的 tcolorbox dispExample

Beamer 中的 tcolorbox dispExample

我用的是@egreg 的回答在 beamer 中,但是不起作用。如何处理?

在此处输入图片描述

答案1

fragile如果您的框架包含诸如列表之类的易碎内容,那么您就需要框架选项。

(并且不要忘记在启用 shell-escape 的情况下进行编译)

% !TeX program = txs:///arara
% arara: pdflatex: {synctex: on, interaction: nonstopmode, shell: yes}

\documentclass{beamer}
\usepackage[all]{tcolorbox}

\setbeamertemplate{background canvas}{\includegraphics[height=\paperheight]{example-image-duck}}

\tcbset{
  boxrule=0pt,
  opacityfill=0,
  listing engine=minted,
  docexample/.add style={}{
    fontlower=\normalsize,
    minted language=latex, % <--------
    documentation minted options={
      autogobble=true,
      fontsize=\small,
      style=bw, % <-------
    }
  }
}
\begin{document}

\begin{frame}[fragile]
\begin{dispExample}
\begin{equation}
  \int_{-\infty}^{\infty} \exp (-x^2) \, dx = \sqrt{\pi}
\end{equation}
\end{dispExample}
\end{frame}
\end{document}

在此处输入图片描述

相关内容