我正在使用 TikZ 通过两个命令绘制图片\draw
。
第一个命令有效,但第二个命令 LaTeX 声称
! Undefined control sequence. l.44 \draw (0,2) -- (-.5,2);
我该怎么做才能解决这个问题...
序言中的致谢
編輯:MWE
\begin{figure}[htbp]
\centering
\begin{tikz}
% First the house
\draw [thick,color=gray] (0,0) -- (0,2) -- (1,3) -- (2,2) -- (2,0) -- cycle (0,2) -- (2,2);
% This command doesnt work...
\draw (0,1) -- (-.5,1);
\end{tikz}
\end{figure}
答案1
试试这个。它应该有效。
\begin{tikzpicture}
% First the house
\draw [thick,color=gray] (0,0) -- (0,2) -- (1,3) -- (2,2) -- (2,0) -- cycle (0,2) -- (2,2);
% This command DOES work!
\draw (0,1) -- (-.5,1);
\end{tikzpicture}