Hi all,
does anyone know how to create colored ovals like color boxes (color box)? I need an oval filled with black color.
Thanks, Chris
General ⇒ color oval
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10347
- Joined: Mon Mar 10, 2008 9:44 pm
color oval
Hi Chris,
one small example creating an filled oval box with TikZ:
Stefan
one small example creating an filled oval box with TikZ:
Code: Select all
\documentclass[a4paper,10pt]{book}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\path[draw,rounded corners=15pt,fill=black] rectangle (8cm,30pt);
\end{tikzpicture}
\end{document}
LaTeX.org admin