
다음 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$};