`\node` からの測定単位が不正です

`\node` からの測定単位が不正です

私は以下のtikzコマンドを持っています

        \begin{tikzpicture}
            \node at (3.2,0) {$\mathbb{R}$};
            \node at (-.2,-.25) {$I$};
            \draw (-3,0) --(3,0);

            \node at (-1.3,2) {$U$};

            \node at (2.2,1.6) {$^+U$};
            \draw plot[smooth] coordinates
                {(1,0)(2,1)(0,3)(-2,0)};

            \node at (2.2,-1.6) {$^-U$};
            \draw plot[smooth] coordinates
                {(1,0)(2,-1)(0,-3)(-2,0)};

            \node at (.3.4,1.5) {$z$};
            \node at (.3,1.5) {\textbullet};
            \draw[dashed] (.3,0) -- (.3,1.5);

            \node at (.3.4,-1.5) {$\conj{z}$};
            \node at (.3,-1.5) {\textbullet};
            \draw[dashed] (.3,0) -- (.3,-1.5);
        \end{tikzpicture}

コンパイルしようとすると、コンソールIllegal unit of measure (pt inserted).に の行が表示されます\node at (.3.4,-1.5)。他の行は問題ないようです。何が問題なのでしょうか?

答え1

座標の最初の点は間違っています…

 \node at (3.4,1.5) {$z$};

または多分

\node at (.3,1.5) {$z$};

関連情報