summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/matrix-skeleton/example.tex
blob: eff0bd0d14bf9855789e39f79b18ce1449d36ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
\documentclass[tikz]{standalone}

\usetikzlibrary{matrix.skeleton}

\begin{document}
  \begin{tikzpicture}
    \matrix (m) [matrix of math nodes,
                 style odd rows on layer={background}{fill=black!25}] {
      1  & \frac{\frac{16}{2}}{4}  & 3  \\
      4.0000001  & 5  & 6  \\
      7  & 8  & 9  \\
      10 & 11 & 12 \\
      13 & 14 & 15 \\
    };
    \fitandstyle{(m-cell-1-1) (m-cell-2-2)}{draw=red, fill=red!25, opacity=0.5}
  \end{tikzpicture}
\end{document}