我目前正在尝试编写一个文档,其中有可拆分的带有垂直渐变的 tcolorbox,如下面的代码所示。但是,我面临的问题是每次分页时颜色渐变都会重置,有办法解决这个问题吗?
下面的代码说明了我创建颜色框的方法以及出了什么问题。
\documentclass[a4paper, 11pt]{article}
\usepackage{lipsum}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\tcbuselibrary{breakable}
\tcbuselibrary{theorems}
\newtcbtheorem[number within=section]{Test}{Test Box}
{enhanced,interior style={white,opacity=0.8},frame style={top color=red!75!black,
bottom color=blue!75!black},sharpish corners,breakable,fonttitle=\bfseries}{th}
\begin{document}
\begin{Test}{I am a test box}{}
\lipsum[1-5]
\end{Test}
\end{document}