A funny issue. No idea what's going on here: in the following MWE comment (or out) the \usepackage[table]{xcolor} and the corresponding } marked with a comment. With the colours the numbers are eaten in the resulting pdf ...
Thank you in advance for every hint!
marek
Code: Select all
\documentclass[a4paper,landscape]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage{bm} % to get bold math symbols
\usepackage[table]{xcolor}
\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}
\usepackage{booktabs}
\usepackage{makecell}
\renewcommand\theadalign{bc}
\renewcommand\theadfont{\bfseries}
\renewcommand\theadgape{\Gape[4pt]}
\renewcommand\cellgape{\Gape[4pt]}
\usepackage[official]{eurosym}
\setlength{\parindent}{0em}
\begin{document}
\begin{table*}\centering
\ra{1.3}
{\rowcolors{2}{green!80!yellow!50}{green!60!yellow!30}
\begin{tabular}{l c r@{ - }l r@{ - }l r@{.}l r@{.}l r@{.}l}
\thead{Flughafen} & \thead{City\\($\bm{\approx{}km$})} & \multicolumn{2}{c}{\thead{Wartezeit\\($\bm{\approx{}Std$})}} & \multicolumn{2}{c}{\thead{Fahrzeit\\($\bm{\approx{}min}$)}} & \multicolumn{2}{c}{\thead{Fahrpreis City\\($\bm{\approx{}}$ \euro{})}} & \multicolumn{2}{c}{\thead{Jahresplakette\\($\bm{\approx{}}$ \euro{})}} & \multicolumn{2}{c}{\thead{Gebühren\\($\bm{\approx{}}$ \euro{})}}\\
\toprule
München & 38 & 3 & 4 & 30 & 60 & 70 & 00 & 360 & 00 & 1 & 50\\ \hline
Frankfurt & 20 & 3 & 5 & 30 & 60 & 2 & 00 & \multicolumn{2}{c}{\o} & 30 & 00\\
\hline
Berlin & 20 & 3 & 5 & 30 & 60 & 2 & 00 & 97 & 00 & 30 & 00\\
\hline
Athen & 20 & 3 & 5 & 30 & 60 & 2 & 00 & 97 & 00 & 30 & 00\\
\hline
Paris 1 (Charles de Gaulle) & 20 & 3 & 5 & 30 & 60 & 50/55 & 00 & 97 & 00 & 30 & 00\\
\hline
Paris 2 (Orly) & 20 & 3 & 5 & 30 & 60 & 30/35 & 00 & 97 & 00 & 30 & 00\\
\hline
London Heathrow & 20 & 3 & 5 & 30 & 60 & 2 & 00 & 97 & 00 & 30 & 00\\
\hline
London Stansted & 20 & 3 & 5 & 30 & 60 & 2 & 00 & 97 & 00 & 30 & 00\\
\hline
London City & 20 & 3 & 5 & 30 & 60 & 2 & 00 & 97 & 00 & 30 & 00\\
\hline
Madrid-Barajas Airport & 20 & 3 & 5 & 30 & 60 & 30 & 00 & 97 & 00 & 30 & 00\\
\hline
Lissabon & 20 & 3 & 5 & 30 & 60 & 2 & 00 & 97 & 00 & 30 & 00\\
\bottomrule
\end{tabular}
} % This is the end } of the table color line above
\caption{Gebühren für Taxiunternehmen und -fahrer an Europäischen Flughäfen}
\end{table*}
\end{document}