Here is what I get now: I want row 1 to have a white background, row 2 to have columns 1 and 2 be white background, while columns 3-8 to have a blue background, and then row 3 is white background, row 4 is blue background, (and repeat, which I left off for shorter example). I have no idea where the phantom white partial row comes from.
Here is the code that generates what I don't want (note that rowcolors basically doesn't work beyond identifying the colors I want, starting row and order of colors seems to have no effect on output):
Code: Select all
\documentclass[11pt]{article}
\usepackage{tabulary} % Tabular with variable width columns balanced
\usepackage[table]{xcolor}
\definecolor{lightblue}{rgb}{0.93,0.95,1.0}
\begin{document}
\begin{table*}[!ht]
\rowcolors{1} {lightblue}{white}
\begin{tabulary}{0.98\textwidth}{LL|CCCCCC}\hline
\multicolumn{2}{c|}{\color{blue} Federal Funds Rate \%} & \multicolumn{6}{c}{\color{blue} Central Tendency} \\ \cline{3-8}
& & \color{blue} 2014 & \color{blue} 2015 & \color{blue} 2016 & \color{blue} 2017 & \color{blue} 2018 & \color{blue} Longer Run \\ \hline
\color{red} 2016 & \color{red} Mar & & & \color{red} 1.02 & \color{red} 2.04 & \color{red} 2.95 & \color{red} 3.31 \\
\color{blue} 2015 & \color{blue} Dec & & \color{blue} .35 & \color{blue} 1.29 & \color{blue} 2.41 & \color{blue} 3.16 & \color{blue} 3.41 \\
& \color{blue} Sep & & \color{blue} .40 & \color{blue} 1.48 & \color{blue} 2.64 & \color{blue} 3.34 & \color{blue} 3.46 \\ \hline
\end{tabulary}
\end{table*}
\end{document}
Any help? Thanks!