Tcolorbox 渐变问题(使用 Adob​​e Acrobat)

Tcolorbox 渐变问题(使用 Adob​​e Acrobat)

我正在使用 tcolorbox 制作精美的框式环境(定义、注释、定理等)。但是在 Adob​​e Acrobat(版本 11.0.20)中显示这些内容时遇到了一些问题。

以下是 MWE:

\documentclass{article}

\usepackage{lipsum}
\usepackage[many]{tcolorbox}

\tcbset{
definitionstyle/.style={%
enhanced,
interior style={top color=magenta!2, bottom color=magenta!15}
}}

\begin{document}

\begin{tcolorbox}[definitionstyle]
\lipsum[1]
\end{tcolorbox} 

\lipsum[2]

\end{document}

这会生成一个遍布整个页面的图像,并且还会覆盖 tcolorbox 下方的文本。

MWE_Broken

另一方面,如果我用 替换内部样式,interior style={magenta!15}则会得到以下图像:

MWE_工作

相关内容