답변1
draw=none
그리기 색상을 제거하면 다음 과 같습니다 .
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[fill=red,draw=none](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}
또는 더 간단하게는 다음 \fill
대신에 just를 사용합니다 \draw
.
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[red](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}