Antwort1
Mit draw=none
entfernen Sie die Zeichenfarbe:
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[fill=red,draw=none](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}
oder einfacher, indem Sie just \fill
anstelle von verwenden \draw
:
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[red](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}