我不知道如何使用“fill=?”

我不知道如何使用“fill=?”

第一次写tex profile,想知道如何使用{fill=}这个样式。

答案1

如果您指的是tikz,那么这里有一个非常简单的例子:

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[red!50, thick]  (1,2) rectangle (3,5);
\filldraw[color=blue!60, fill=orange!50, very thick](-1,0) circle (1.5);
\filldraw[color=blue!60, fill=cyan!50, very thick](5,0) circle (1.5);
\end{tikzpicture}
\end{document}

输出:

在此处输入图片描述

更多信息请参阅手册和背面网站。

相关内容