我正在使用许多用户提供的最小示例来导入tcolorbox
包:
\documentclass{article}
\usepackage[all]{tcolorbox}
\begin{document}
Hello
\end{document}
真的再简单不过了。但我收到了错误:
Undefined control sequence: \ExplSyntaxOn
Undefined control sequence: \ExplSyntaxOff
使用 pdfLatex 编译时。我使用的是最新版本。我的 IDE 是 TexStudio。
这有什么问题?
答案1
很可能你有一个较旧的 LaTeX,它没有预加载expl3
。因此你需要
\usepackage{expl3}
前
\usepackage{tcolorbox}