tikz:如何不绘制形状的边框?

tikz:如何不绘制形状的边框?

考虑这个画圆圈的例子:

\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \draw[fill=red](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}

输出为:

在此处输入图片描述

怎样不画出这个圆的边框?

答案1

随着draw=none你删除绘制的颜色:

\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \draw[fill=red,draw=none](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}

或者更简单地使用 just\fill代替\draw

\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \fill[red](0, 0)circle(1cm);
\end{tikzpicture}
\end{document}

相关内容