Wie stelle ich bei TikZ abgerundete eckige Klammern als Dekoration dar?
Hallo!
In mathtools.sty heißen diese Klammern `lgroup rgroup`. Kann man solche Klammern auch in TikZ haben?
**IST**:
![alt text][1]
**SOLL**:
![alt text][2]
\documentclass[varwidth, margin=5mm]{standalone}
%\documentclass[a4paper]{article}
\usepackage[ngerman]{babel}
\usepackage{amsmath, relsize, tikz}
\usetikzlibrary{matrix, decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}
\matrix (m) [matrix of math nodes,
inner sep=0pt, column sep=0.5em, %row sep=0.1em,
nodes={inner sep=0.25em,text width=1em,align=center}
]
{
a_{1} & b_{1} & c_{1} \\
a_{2} & b_{2} & c_{2}\\
a_{3} & b_{3} & c_{3}\\
};
%Klammern, Strich
%\node[red] at (m-1-2.north east){+};
\draw[decorate,decoration=brace](m-3-1.south west) -- (m-1-1.north west) ;
\draw[decorate,decoration=brace] (m-1-3.north east) -- (m-3-3.south east);
\draw[] (m-1-3.north west) -- (m-3-3.south west);
\end{tikzpicture}
\end{document}
[1]: http://texwelt.de/wissen/upfiles/9999999999999999_3.jpg
[2]: http://texwelt.de/wissen/upfiles/55555555_65.png