[Tex/LaTex] How to draw a solid colored circle

circles

I am working on some book writing. For that I need to draw circle filled with red color.

I tried \circle but it generate black circle only. How can I fill it with color?

Best Answer

One easy way would be to use TikZ as in the following MWE

\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tikz}

\begin{document}
Some Text \tikz\draw[red,fill=red] (0,0) circle (.5ex); further text
\end{document}

which produces

enter image description here

Where the first red defines the line style of the drawn circle to be red and the fill=red specifies, that its solid red. You could also use black,fill=red to obtain a red circle with a black border. Finally of course the .5ex is the radius of the circle.

Related Question