我知道在 tcolorbox 中可以使用\tcblower
命令来更改当前背景样式。我的问题是是否可以在 tcolorbox 中多次切换上下背景样式?
\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{most}
\begin{document}
\begin{tcolorbox}[
enhanced,
beamer,
breakable,]
I want to here show the upper style
\tcblower
I want to here show the lower style
% \tcbupper
This is the third paragraph, I want to here repeat the upper style
\end{tcolorbox}
\end{document}