Vertikale Striche in Tabelle
Ich bin etwas verwirrt, weil ich gerne durchgehend vertikale Striche zwischen den Wochentagen hätte. Nun habe ich geteilte Meinungen zu booktabs gehört und weiß nun nicht wie ich die Tabelle sonst machen kann. Warum ist es so verpöhnt mit den vertikalen Strichen? Die Tabelle wäre sonst zu unübersichtlich. AUßerdem sollen die 3 Buchstaben bei Donnerstag etwas gleichmäßiger positioniert werden. Bitte um Hilfe!
\documentclass[paper=a4,titlepage=true,bibliography=totocnumbered,parskip=half,DIV=12]{scrartcl}
\usepackage{tabularx}
\usepackage{booktabs}
\begin{document}
\begin{table}[ht]
\caption[Die 15 Schulmädchen.]{Die 15 Schulmädchen.}
\begin{center}
\centering
\begin{tabular}{|ccc|ccc|ccc|rrr|ccc|ccc|ccc|}
\midrule
\multicolumn{3}{|c}{\textbf{Montag}} & \multicolumn{3}{|c}{\textbf{Dienstag}} & \multicolumn{3}{|c}{\textbf{Mittwoch}} & \multicolumn{3}{|c}{\textbf{Donnerstag}} & \multicolumn{3}{|c}{\textbf{Freitag}} & \multicolumn{3}{|c}{\textbf{Samstag}} & \multicolumn{3}{|c|}{\textbf{Sonntag}}\\
\multicolumn{3}{|c|}{\textbf{Montag}} & \multicolumn{3}{c|}{\textbf{Dienstag}} & \multicolumn{3}{c|}{\textbf{Mittwoch}} & \multicolumn{3}{c|}{\textbf{Donnerstag}} & \multicolumn{3}{c|}{\textbf{Freitag}} & \multicolumn{3}{c|}{\textbf{Samstag}} & \multicolumn{3}{c|}{\textbf{Sonntag}}\\
\midrule
a & A & V & b & B & V & c & C & V & d & D & V & e & E & V & f & F & V & g & G & V \\
\midrule
b & E & D & c & F & E & d & G & F & e & A & G & f & B & A & g & C & B & a & D & C \\
\midrule
c & B & C & d & C & A & e & D & B & f & E & C & g & F & D & a & G & E & b & A & F \\
\midrule
d & f & g & e & a & b & f & a & b & g & b & c & a & c & d & b & d & e & c & e & f \\
\midrule
e & F & C & f & G & D & g & A & E & a & B & F & b & C & G & c & D & A & d & E & B \\
\bottomrule
\end{tabular}
\end{center}
\label{tab:1}
\end{table}
\end{document}