All pastes #2094047 Raw Edit

Someone

public text v1 · immutable
#2094047 ·published 2011-11-12 23:23 UTC
rendered paste body
%% Color table

\newenvironment{tablecolor}{
	\renewcommand{\tdark}{\columncolor{Cyan}\color{white}}
	\renewcommand{\tlight}{\columncolor{SkyBlue!30}\color{black}}
	\arrayrulecolor{white}
	\addtolength{\arrayrulewidth}{2pt}
	\newcolumntype{L}[1]{>{##1}l}
	\newcolumntype{C}[1]{>{##1}c}
	\newcolumntype{R}[1]{>{##1}r} 
}{
	\arrayrulecolor{black}
	\addtolength{\arrayrulewidth}{-2pt}
}

%% Goals Table

\newcommand{\tablegoals}[7]{
\begin{wraptable}[8]{r}{100pt}
{\Large
\renewcommand{\arraystretch}{1.3}
\begin{tablecolor}
\begin{tabular}{>{\centering\columncolor{Cyan}\color{white}}m{60pt}|C{tlight}}
Goal 1	&	#1\\\hline
Goal 2	&	#2\\\hline
Goal 3	&	#3\\\hline
Goal 4	&	#4\\\hline
Goal 5	&	#5\\\hline
Goal 6	&	#6\\\hline
Goal 7	&	#7
\end{tabular}
}
\end{tablecolor}
\end{wraptable}
}