I am writing a table with colored rows using the tabupackage (2.10). For example
\documentclass[12pt]{article}
\usepackage{tabu}
\usepackage[table]{xcolor}
\begin{document}
\begin{table}
\rowcolors{2}{red}{blue}
\begin{tabu}{cc}
\toprule
Row1 & A \\
Row2 & B \\
Row3 & C \\
\bottomrule
\end{tabu}
\end{table}
\end{document}
I have also tried with \taburowcolors 2{red ... blue} but the colors never show up at all.
I am aware of the issue at the github repo https://github.com/tabu-fixed/tabu/issues and even after manually updating to the 2.10 release, the problem still persists for me.
Does anyone know if the problem has been fixed? If so, how can I get the colored table.
It is worth to mention that I am using the tabuenviroment as I will be using the columns with custom lengths X[n]. Is there any other alternative to tabu where I can set up the length of the columns?


tabularxpackage. – leandriis Jun 07 '19 at 15:30tabularxpackage – C. Zhihao Jun 07 '19 at 15:32tabularxXtype columns can be done using>{\hsize=2\hsize}Xsee for example: https://tex.stackexchange.com/a/337578/134144 – leandriis Jun 07 '19 at 15:37