This codes compiles a Hasse diagram of a diamond lattice. Now, I want to replace the 0-node by a \wedge b. However, when I replace all instances of 0 by a \wedge b, I get an error. Any help on how to resolve this issue?
\begin{tikzpicture}
\node [mynode,label=above:1] (1) at (0,0) {};
\node [mynode,below left = of 1,label=left:a] (a) {};
\node [mynode,below right = of 1,label=right:b] (b) {};
\node [mynode,below right = of a,label=below:0] (0) {};
\node [mynode,below = of 1,label=right:c] (c) {};
\draw (1) -- (a)
(1) -- (c)
(1) -- (b)
(c) -- (0)
(a) -- (0)
(b) -- (0);
\end{tikzpicture}
wedge b(no backslash). – John Kormylo Apr 12 '20 at 14:40label=below:$\wedge$work? – Torbjørn T. Apr 12 '20 at 14:57\draw (A) -- (B) node[midway, sloped, above]{text};– John Kormylo Apr 12 '20 at 15:26