自动将文本附加到 \newtcolorbox 环境

自动将文本附加到 \newtcolorbox 环境

我想要一种方法来设计tcolorbox生成的环境,使得一些任意文本始终附加到其主体中。

答案1

使用after upper选项

\documentclass{article}

\usepackage[]{tcolorbox}
\newtcolorbox{mytcolorbox}{
         after upper={\ and this  text is added every time}
     }
\begin{document}
\begin{mytcolorbox}
The body text
\end{mytcolorbox}
\end{document}

相关内容