Graphics, Figures & TablesDraw five circles in radial array about a point in tikz

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
pban92
Posts: 54
Joined: Sat Aug 09, 2008 9:34 am

Draw five circles in radial array about a point in tikz

Post by pban92 »

Can anybody pls provide the syntax/command to draw any number of circle about a point like radial array in autocad? Did not find any example in tikz manual. May be "radial array" has different term in tikz manual?

Many thanks!
Last edited by pban92 on Tue Jan 18, 2011 2:36 am, edited 5 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Draw five circles in radial array about a point in tikz

Post by localghost »

pban92 wrote:[…] Did not find any example in tikz manual. […]
Then you will need your own ideas. The \foreach command fed with the according angles in a polar coordinate system should do the trick.


Thorsten
pban92
Posts: 54
Joined: Sat Aug 09, 2008 9:34 am

Draw five circles in radial array about a point in tikz

Post by pban92 »

Thanks Ghost.
I managed to work out with your hint.

Code: Select all

\documentclass[10pt,a4paper]{article}
\usepackage{tikz}
\begin{document}
  \begin{tikzpicture}  
  \draw[color=black](0,0) circle(5cm);% draw mother circle
  \foreach \x in {72,144,...,360} \draw[color=black](\x:7) circle(1cm);%draw 5 child circles
  \end{tikzpicture}
\end{document}
A quick link to the specific section of the board rule would make it easier to follow it. Just a suggestion!

Thanks!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Draw five circles in radial array about a point in tikz

Post by localghost »

The rules can be found on top of every forum among the »Announcements« and actually can't be overlooked. Especially when opening a new topic. Other users have managed to find them, too.
pban92
Posts: 54
Joined: Sat Aug 09, 2008 9:34 am

Re: Draw five circles in radial array about a point in tikz

Post by pban92 »

It's equivalent to providing the phone number when requesting someone to call back. Leaves the prospective caller from the hassle to look for the number. I find that always convenient. (I had to spend good 5 minutes or so which could be well avoided. Don't want to imagine the accumulated time by the hundred of visitors.)
Last edited by pban92 on Sun Jan 16, 2011 8:49 pm, edited 3 times in total.
Post Reply