在 tcolorbox 中可以多次使用 \tcblower 吗?

在 tcolorbox 中可以多次使用 \tcblower 吗?

我知道在 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}

相关内容