对于同时具有双色表格和单独的分段函数的文档,分段函数会被识别并转换为表格。
\documentclass[fleqn]{article}
\usepackage[table]{xcolor}
\usepackage{amsmath}
\rowcolors{2}{gray!20}{white}
\begin{document}
\begin{tabular}{ |c|c| }
\rowcolor{gray!50}
\hline
\textbf{One} & \textbf{Two}\\
\hline
Text & More Text\\
Even More & Text\\
\hline
\end{tabular}
\[
\begin{cases}
0 & t<0\\
1 & t>0
\end{cases}
\]
\end{document}
答案1
您找\rowcolors{1}{gray!20}{white}
错地方了。它不应该在文档序言中,而应该在表格之前,您应该在其中使用:
\documentclass[fleqn]{article}
\usepackage[table]{xcolor}
\usepackage{amsmath}
\begin{document}
{
\rowcolors{1}{gray!20}{white}
\begin{tabular}{ |c|c| }
\hline
\textbf{One} & \textbf{Two}\\
\hline
Text & More Text\\
Even More & Text\\
\hline
\end{tabular}
}
\[
\begin{cases}
0 & t<0\\
1 & t>0
\end{cases}
\]
\end{document}