Gibt es eigentlich eine simple Einstellung, dass das Label nicht von anderem übermalt wird? Ich habe bisher immer alles neu gesetzt, aber frage mich, ob es eleganter geht. Beispiel: Öffne in Overleaf
\documentclass[tikz, margin=5pt]{standalone} \begin{document} \begin{tikzpicture}[scale=3,transform shape] \coordinate[label=M] (M) at (0,0); \fill[yellow] (-2mm,-2mm) rectangle (2mm,2mm); \end{tikzpicture} \end{document} gefragt 27 Feb '19, 21:05 cis |
Man könnte die Koordinate einfach auf einen Layer im Vordergrund malen. Öffne in Overleaf
\documentclass[tikz, margin=5pt]{standalone} \pgfdeclarelayer{background} \pgfdeclarelayer{foreground} \pgfsetlayers{background,main,foreground} \begin{document} \begin{tikzpicture}[scale=3,transform shape] \begin{pgfonlayer}{foreground} \coordinate[label=M] (M) at (0,0); \end{pgfonlayer} \fill[yellow] (-2mm,-2mm) rectangle (2mm,2mm); \end{tikzpicture} \end{document} beantwortet 27 Feb '19, 21:47 Henri Was nicht alles geht... :()
(27 Feb '19, 21:48)
cis
|