Is there a way in order to set every label of every single node to his north west position?
1 Answer
Create a style:
\documentclass{article} \usepackage{tikz} \usetikzlibrary{positioning} \begin{document} \begin{tikzpicture}[ every node/.style={draw}, mylabel/.style={label={above left:{#1}}} ] \node[mylabel={Where}] (a) {is}; \node[mylabel={your}, right=4em of a] {MWE?}; \end{tikzpicture} \end{document} - :) Great answer!user121799– user1217992018-01-21 20:07:32 +00:00Commented Jan 21, 2018 at 20:07
- 2@marmot Hoping to find an MWE in the OP's next question :):):)CarLaTeX– CarLaTeX2018-01-21 20:11:03 +00:00Commented Jan 21, 2018 at 20:11
-
- 3@AndreaLeo Prego, and please remember to add a minimal working example (MWE) next time!CarLaTeX– CarLaTeX2018-01-21 20:44:50 +00:00Commented Jan 21, 2018 at 20:44
