möchte mir in Latex Tabelle mit 27 Spalten erstellen. Siehe Code
\documentclass[11pt,paper=a4,]{scrbook}
\title{Minimalbeispiel}
\usepackage[ngerman]{babel}
\usepackage[ansinew]{inputenc}
\usepackage{rotating}
\usepackage{colortbl}
\usepackage{color}
% Define user colors using the RGB model
\definecolor{dunkelgrau}{rgb}{0.8,0.8,0.8}
\definecolor{hellgrau}{rgb}{0.95,0.95,0.95}
\begin{document}
\begin{sidewaystable}
\begin{tabular}{*{27}{l|}}
\hline \rowcolor{dunkelgrau}
\textbf{Funktionalität, Plattform} & \textbf{1} & \textbf{2}& \textbf{3}& \textbf{4} &\textbf{5} & \textbf{6}&\textbf{7}& \textbf{8} & \textbf{9}& \textbf{10}& \textbf{11} &\textbf{12} & \textbf{13}& \textbf{14}& \textbf{15} &\textbf{16}&\textbf{17}& \textbf{18} &\textbf{19} & \textbf{20}& \textbf{21}& \textbf{22} & \textbf{23} & \textbf{24} & \textbf{25} & \textbf{26} \\ \hline
\rowcolor{hellgrau}\textbf{Kommunikation} \\ \hline
\end{tabular}
\end{sidewaystable}
\end{document}
http://www.file-upload.net/download-360 ... n.pdf.html So sieht mein PDF Datei aus.

