提问于:
浏览数:
3047
计数器\xuhao在ctexbook文档类能显示,在book文档类中显示不出来,报错
\documentclass[11pt]{book}
%第一条命令定义了一个名为xuhao的新计数器,
\newcounter{xuhao}[section]
\renewcommand{\thexuhao}{\arabic{xuhao}}
\newcommand{\xuhao}{\par{\heiti 例} \refstepcounter{xuhao}\textbf{\thexuhao}\hspace{0.5em}}
%定义一个盒子
\usepackage{tcolorbox}
\newtcolorbox{example}[2][]{
colbacktitle=red!10!white,
colback=green!10!white,
colframe=green!10!white,
title={**\xuhao** \bfseries{#2}}, %\xuhao 在book 或者article文档类中不能显示,但在ctex 文档类中能显示
fonttitle={\color{red} #1}
}
\begin{document}
\begin{example}{测试}
测试123
\end{example}
\end{document}