tcolorbox 中的标题内的数学

tcolorbox 中的标题内的数学

我正在编写一个脚本,用乳胶中的 tcolorbox 模拟数学笔记本。

只要标题中没有等号,似乎就完全没问题。如果我有,它就会中断

\begin{tcolorbox}[title=$a=b$,title filled]
\(a=5\)
\end{tcolorbox}

答案1

您需要括号:

\documentclass{article}

\usepackage{tcolorbox}

\begin{document}
\begin{tcolorbox}[title={$a=b$},title filled]
\(a=5\)
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容