为了获得带有副标题的章节标题(我也不希望副标题出现在目录中),我一直在使用类似以下的方法:
\section[Title]{Title\\ \footnotesize{Subtitle}}
但将其用作 tcolorbox 的标题会产生许多错误,以下操作不起作用:
\begin{tcolorbox}[title=\section[Title]{Title\\ \foonotesize{Subtitle}}]
有什么方法可以使功能与上述相同的功能发挥作用?
答案1
如果副标题不应该在目录中,则不需要将它们放在章节标题内,而可以将它们放在后面:
\documentclass{article}
\usepackage[most]{tcolorbox}
\begin{document}
\tableofcontents
\begin{tcolorbox}[title={\protect\section[Title]{Title}\footnotesize subtitle}]
test
\end{tcolorbox}
\end{document}