如何在 tcolorbox 中应用斯巴达风格

如何在 tcolorbox 中应用斯巴达风格

根据tcolorbox用户手册,使用 spartan 可以大大缩短编译时间style。但我不清楚如何将样式应用于具体框或整个文档。说明性示例可能会有所帮助。

答案1

只需说\tcbset{spartan}使用所有盒子spartan或在特定盒子或\newtcolorbox定义中本地使用它(此处未显示)

选项实际上spartanskin,所以\tcbuselibrary{skins}是必要的或\usepackage[skins]{tcolorbox}\usepackage[most]{tcolorbox}

实际上spartan是的包装器skin=spartan

\documentclass{article}

\usepackage[most]{tcolorbox}


\tcbset{spartan}
\begin{document}

\begin{tcolorbox}
  Foo
\end{tcolorbox}


\begin{tcolorbox}[enhanced]
Foo
\end{tcolorbox}

\end{document}

相关内容