tikz add tag
CarLaTeX
In the following code, why `matrAquater` and `matrBquater` don't have the delimiter vertically positioned as in the other matrices?


```
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{matrix, positioning}
\tikzset{
    mymatr/.style={
        matrix of math nodes,
        nodes in empty cells,
        inner xsep=-6pt,
        inner ysep=0pt,
        nodes={
            inner xsep=5pt, 
            inner ysep=3pt
            },
        left delimiter={[},
        right delimiter={]}
        }
    }
\begin{document}
\[
\begin{tikzpicture}
\matrix[mymatr] (matrA) { 
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\};
\end{tikzpicture}
\begin{tikzpicture}
\matrix[mymatr] (matrAbis) { 
1 & 2 & -3 \\
4 & 5 & 6 \\
7 & 8 & -9 \\};
\end{tikzpicture}
\begin{tikzpicture}
\matrix[mymatr] (matrAter) { 
1 & 2 & -3 \\
-4 & 5 & 6 \\
7 & 8 & 9 \\};
\end{tikzpicture}
\begin{tikzpicture}
\matrix[mymatr] (matrAquater) { 
1 & 2 & -3 \\
-4 & 5 & 6 \\
7 & 8 & -9 \\};
\end{tikzpicture}
\]
\[
\begin{tikzpicture}
\matrix[mymatr] (matrB) {
1 & 2 & 3 \\
4 & 5 & 6 \\};
\end{tikzpicture}
\begin{tikzpicture}
\matrix[mymatr] (matrBbis) {
1 & 2 & -3 \\
4 & 5 & 6 \\};
\end{tikzpicture}
\begin{tikzpicture}
\matrix[mymatr] (matrBter) {
1 & 2 & 3 \\
-4 & 5 & 6 \\};
\end{tikzpicture}
\begin{tikzpicture}
\matrix[mymatr] (matrBquater) {
1 & 2 & -3 \\
-4 & 5 & 6 \\};
\end{tikzpicture}
\]
\end{document}
```
![image.png](/image?hash=58ec96f2f9300eadbd68f6c3db53e088e9ee7be97503abf1384044b641ddf4f3)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.