我用rowcolors*{1}{...}{...}
它来给表格上色,然后我再次使用它(以白色作为参数)来重置颜色。之后,括号看起来很奇怪(它们略微消失了)。
如果我使用scrbook
,book
,article
(例如)就会出现上述错误。
如果我使用minimal
,大括号看起来正常。
这是为什么?我该怎么做才能修复这个错误?
\documentclass{scrbook}
\usepackage[table]{xcolor}
\usepackage{amsmath}
\begin{document}
% rowcolors*{1}{...}{...} ommitted.
% TABLE ommited.
\rowcolors*{1}{white}{white}
\[
x =
\begin{cases}
y & z
\end{cases}
\]
\end{document}
答案1
我认为这是那些未记录的功能之一。这有效
\documentclass{scrbook}
\usepackage[table]{xcolor}
\usepackage{amsmath}
\begin{document}
% rowcolors*{1}{...}{...} ommitted.
% TABLE ommited.
\rowcolors*{1}{white}{white}
\[\csname CT@everycr\endcsname{}
x =
\begin{cases}
y & z
\end{cases}
\]
\end{document}