我想要一种方法来设计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}