我通过以下代码执行此操作:
\begin{tikzpicture}
\draw (0,0) circle (1);
\fill[blue] plot[smooth, left] coordinates {(1,0) (0,0) (0,1)};
\fill[blue] (0,0) -- (1,0) arc (0:90:1) -- (0,0); % Q-Line
\end{tikzpicture}
我的问题是:如果有任何选择可以制作第一个图形,但在一个命令?即放入\fill[blue] plot[smooth, left] coordinates {(1,0) (0,0) (0,1)}
弧线?(或者如果可能的话,用其他方法)。
谢谢你!!
答案1
\documentclass[tikz, border=1cm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw (0,0) circle (1);
\fill[blue] plot[smooth] coordinates {(0,1) (0,0) (1,0)} arc (0:90:1);
\end{tikzpicture}
\end{document}
不建议使用这种arc( : : )
符号,但它确实有效。以下是正确的书写方式:
\fill[blue] plot[smooth] coordinates {(0,1) (0,0) (1,0)} arc[start angle=0, end angle=90, radius=1] ;