我想在两点之间画一个角度,但由于某种原因,TexStudio 找不到 tikz 的 \pic 函数(尽管我导入了“角度”库)。
这是我的代码:
\documentclass[12pt, a4paper]{standalone}
\usepackage{tikz}
\usetikzlibrary{angles}
\begin{document}
\begin{tikzpicture}
\pic [draw, angle eccentricity=1.5] {angle = (0,1) -- (0,0) -- (1,0)};
\end{tikzpicture}
\end{document}
有人能告诉我我的错误在哪里吗?
谢谢!
答案1
coordinate
我认为您需要使用命名:
\documentclass[12pt, a4paper]{standalone}
\usepackage{tikz}
\usetikzlibrary{angles}
\begin{document}
\begin{tikzpicture}
\coordinate (O) at (0,0);
\coordinate (A) at (0,1);
\coordinate (B) at (1,0);
\pic [draw, angle eccentricity=1.5] {angle=A--O--B};
\end{tikzpicture}
\end{document}