Wie muss ich das korrekt angeben, wenn ich bestimmte Zellen Wenn ich Öffne in Overleaf
\tikzset{ test/.style={ execute at begin cell={\mathbf{}, execute at end cell={}} } } verwende, funktioniert es nicht wegen den Klammern Öffne in Overleaf
\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} gefragt 23 Mär '18, 19:41 cis |
Wieso überhaupt Öffne in Overleaf
\documentclass{article} \usepackage{tikz} \usetikzlibrary{matrix} \begin{document} \begin{tikzpicture} \matrix (m) [matrix of math nodes, column sep = 2ex, row sep = 1ex, row 1/.style = {font=\boldmath}] { 123 & 345 & 67 \\ 123 & 345 & 67 \\ }; \end{tikzpicture} \end{document} beantwortet 24 Mär '18, 02:40 Henri |