从下面的例子中,你可以看到调用组中的包确实有效(xcolor
在这个例子中),除了包xeCJK
。
这是否意味着这是一个错误xeCJK
,或者是否有其他方法可以使它在组中工作?
例子:
\documentclass{article}
%...
% Here are some macro definations, package calling etc.
%...
{% all codes from here below are used for test
\usepackage{xcolor}
\usepackage{xeCJK}% this line has to be commented to make the codes work.
\begin{document}
\colorbox{red}{some text}
\end{document}
}