-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.tex
More file actions
42 lines (31 loc) · 788 Bytes
/
4.tex
File metadata and controls
42 lines (31 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.text}
\begin{document}
\begin{tikzpicture}
% Rings
\foreach \r in {2,2.7,3.4,4.1}
\draw (0,0) circle [radius=\r cm];
% Rays
\foreach \x in {0,...,8}
\draw (270+40*\x:2cm) -- (270+40*\x:4.1cm);
% Rings of Letters
\foreach \y in {0,1,2} {
% Letters
\foreach \x in {0,...,8} {
\pgfmathparse{{"G","H","I","K","B","C","D","E","F"}[\x]}
\edef\letter{\pgfmathresult}
\draw [decoration={
text along path,
text={\letter},
text align={center}
},
decorate]
(270-40*\x:2.2cm+0.7cm*\y) % Start Location
arc[start angle=270-40*\x,
delta angle=-40,
radius=2.2cm+0.7cm*\y];
}
}
\end{tikzpicture}
\end{document}