
私は LaTeX で tcolorbox を使用して Mathematica ノートブックをエミュレートするスクリプトを書いています。
タイトルにイコール記号がない限り、全く問題ないようです。イコール記号があると、
\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}