Ticker

6/recent/ticker-posts

Draw Circles in Tikz LaTeX - Quick Answerz

Circles in Tikz \(\LaTeX\)

Circle is one the basic geometric shape and can easily be created in Tikz \(\LaTeX\) and can enhanced visually by changing the oultine color, fill color, outlines to dashed, dotted, thick and ultra thick, adjusting opacity to outlines and fill colors, and applying gradient colors.

Command to draw circle in Tikz \(\LaTeX\)

\draw [parameter1, parameter2, parameter3,...] (a,b) circle (K_unit) where:
  • \draw --- used to draw the shape;
  • [parameter1, parameter2, parameter3,...] --- parameters are the options separated by commas used to enhance the graphics of the shape
  • (a,b) --- coordinates of the center of the circle;
  • circle --- name of the shape;
  • K_unit ---- K is some positive integer and unit is the measurement unit like, 5mm, 1in, 4cm etc.

;
Circle in Tikz Code in \(\LaTeX\) Result
Solid Outline Circle;
Black Color(default)
\begin{tikzpicture}
\draw (0,0) circle (10mm);
\end{tikzpicture}
Solid Outline Circle;
Red Color
\begin{tikzpicture}
\draw [red] (0,0) circle (10mm);
\end{tikzpicture}
Dashed Outline Circle;
Green Color
\begin{tikzpicture}
\draw [green, dashed] (0,0) circle (10mm);
\end{tikzpicture}
Thick Outline Circle;
Purple Color
\begin{tikzpicture}
\draw [purple, thick] (0,0) circle (10mm);
\end{tikzpicture}
Ultra Thick Outline Circle;
Blue Color with 50% opacity
\begin{tikzpicture}
\draw [blue!50, ultra thick] (0,0) circle (10mm);
\end{tikzpicture}
Dotted Outline Circle;
Blue Color
\begin{tikzpicture}
\draw [blue, dotted] (0,0) circle (10mm);
\end{tikzpicture}
Filled Circle;
Yellow Color
\begin{tikzpicture}
\draw [fill, yellow] (0,0) circle (10mm);
\end{tikzpicture}
Gradient Circle;
White to Red inside Color;
Green Outline
\begin{tikzpicture}
\filldraw[green, even odd rule,inner color=red,
outer color=white] (2,-2) circle (10mm);
\end{tikzpicture}

Related Questions

  • Graphics in LaTeX using Tikz
  • How to draw circle in tikz
  • How to draw filled circle in tikz
  • How to draw dashed circle in tikz
  • How to draw dotted circle in tikz
  • How to draw gradient color circle in tikz
  • How to draw different color circle in tikz
  • How to draw thick circle in tikz
  • How to draw ultra thick circle in tikz
  • How do you make a circle in TikZ?
  • How do you draw TikZ?
  • How do you draw an arc in TikZ?
  • tikz draw circle radius
  • tikz manual
  • tikz colors
  • How do you insert a circle in latex?
  • How do you make a small circle in latex?
  • Which command is used to draw a solid circle?
  • latex black circle
  • black filled circle latex
  • latex circle number
  • tikz circle no line
  • latex circle with slash
  • how to color circle in tikz latex

Post a Comment

0 Comments