0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

patternsライブラリ

Last updated at Posted at 2023-06-28

\usetikzlibrary{patterns}

TikZjax×
TeXclip○
obsidian×

patterns ライブラリで次のような塗りつぶしがかけます。

\begin{tikzpicture}
\fill[pattern=north west lines] (0,0) rectangle (3,4);
\end{tikzpicture}

\fill, \draw, \pathのオプションに入れます。パターンの背景は透明です。

TeXclipソースコード

パターン

pattern=north west lines

pattern=north east lines

pattern=horizontal lines

pattern=vertical lines

pattern=grid

pattern=crosshatch

pattern=dots

pattern=crosshatch dots

pattern=fivepointed stars

pattern=sixpointed stars

pattern=bricks

pattern=checkerboard

pattern color=オプションを指定して,パターンに色を付けることができます。

\usetikzlibrary{patterns}
\begin{tikzpicture}
	\fill[pattern=checkerboard,pattern color=red] (0,0) rectangle (4,3);
\end{tikzpicture}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?