TikZ / matrix of math nodes: Zellen in bold (fett)
[![alt text][1]][1]
Wie muss ich das korrekt angeben, wenn ich bestimmte Zellen `bold` haben möchte.
Wenn ich
\tikzset{
test/.style={
execute at begin node={\mathbf{},
cell={\mathbf{},
execute at end node={}}
cell={}}
}
}
verwende, funktioniert es nicht wegen den Klammern `} {`.
\documentclass[border=5mm]{standalone}
\usepackage{selinput}
\SelectInputMappings{adieresis={ä},germandbls={ß}}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\matrix (m)
[matrix of math nodes,
column sep = 2ex,
row sep = 1ex,
row 1/.style = {execute at begin cell={\mathbf}},
]
{
123 & 345 & 67 \\
};
\end{tikzpicture}
\end{document}
[1]: https://texwelt.de/wissen/upfiles/55555555_141.png