我用的是@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}