Wie kann ich die horizontale Linie zwischen Gruppe A und Gruppe B dicker machen, ohne die Klammern zu beschädigen? Muss ich hierfür eine andere Methode zum Erhalten der Klammern verwenden?
\documentclass[11pt]{article}
\usepackage{amsmath,tabularx,ragged2e}
\newcolumntype{C}[1]{>{\Centering}m{#1}}
\begin{document}
\[
\begin{array}{r}
\begin{tabular}{|C{24pt}!{\vrule width1pt}C{20pt}|C{20pt}|}
\hline
a&b&c\\ \noalign{\hrule height1pt}
\end{tabular}\\
\llap{\hbox{group A}}
\left\{
\begin{tabular}{|C{24pt}!{\vrule width1pt}C{20pt}|C{20pt}|}
1&2&3\\\hline
4&5&6\\\hline
\end{tabular}
\right.\kern-\nulldelimiterspace\\
\llap{\hbox{group B}}
\left\{
\begin{tabular}{|C{24pt}!{\vrule width1pt}C{20pt}|C{20pt}|}
7&8&9\\\hline
7&8&9\\\hline
\end{tabular}
\right.\kern-\nulldelimiterspace
\end{array}
\]
\end{document}
Antwort1
Bei Verwendung der Xhline
im makecell
Paket definierten:
\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{ragged2e}
\usepackage{makecell,tabularx} % <---
\newcolumntype{C}[1]{>{\Centering}m{#1}}
\begin{document}
\[
\begin{array}{r}
\begin{tabular}{|C{24pt}!{\vrule width1pt}C{20pt}|C{20pt}|}\hline
a&b&c\\
\Xhline{1pt} % <---
\end{tabular}\\
\llap{\hbox{group A}}\left\{\begin{tabular}{|C{24pt}!{\vrule width1pt}C{20pt}|C{20pt}|}
1&2&3\\ \hline
4&5&6\\ \Xhline{1pt} % <---
\end{tabular}\right.\kern-\nulldelimiterspace\\
\llap{\hbox{group B}}\left\{\begin{tabular}{|C{24pt}!{\vrule width1pt}C{20pt}|C{20pt}|}
7&8&9\\\hline
7&8&9\\\hline
\end{tabular}\right.\kern-\nulldelimiterspace
\end{array}
\]
\end{document}