Konstanten Abstand zum Zentrum herstellen
Liebe Texwelt,
mein Ziel ist es mehrere fcolorboxen um ein Zentrum wandern zu lassen. Problem dabei ist, dass der Inhalt in den fcolorboxen zwar pro Kreis um das Zentrum gleich groß ist, einzelne Einträge, die ich dahinter platziere jedoch eine unterschiedliche Länge haben. Das führt dann dazu, dass der Abstand zum Zentrum je nach Länge des Eintrags hinter den fcolorboxen verschieden groß ist. Vielleicht könnt ihr mir weiterhelfen, wie ich unabhängig davon einen konstanten Abstand meines Kreisrings zum Zentrum herstellen kann.
\documentclass[fleqn,12pt,a4paper,german,xcolor=dvipsnames]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usepackage{wasysym}
\begin{document}
\begin{center}
\begin{tikzpicture} [
point/.style={minimum size=#1},
point/.default=5pt]
\foreach[count=\i,evaluate=\i as \angle using (\i)*360] \text in {**\fcolorbox{black}{cyan}{1122}**
}
\node[point=2.2em,rotate=\angle] (node\i) at (\angle:0.0) {\text};
[point/.default=5pt ]
\foreach[count=\i,evaluate=\i as \angle using (\i)*360/8] \text in {
\fcolorbox {black}{gray} {1\textcolor{white}0} 1344 , \fcolorbox {black}{gray} {1\textcolor{white}1} 1134,usw}
\node[point=2.2em,rotate=\angle] (node\i) at (\angle:1.5) {\text};
point/.style={draw},
point/.default=1pt]
\foreach[count=\i,evaluate=\i as \angle using (\i)*5.133] \text in {
\fcolorbox {black}{gray} {1\textcolor{white}{0}}\fcolorbox {black}{gray} {0\textcolor{white}{0}} 5525,usw}
\node[point=2.2em,rotate=\angle] (node\i) at (\angle:4.3) {\text};
point/.style={draw},
point/.default=1pt ]
\foreach[count=\i,evaluate=\i as \angle using (\i)*1.968] \text in {
\fcolorbox {black}{gray} {1\textcolor{white}0}\fcolorbox {black}{gray} {0\textcolor{white}0}\fcolorbox {black}{gray} {0\textcolor{white}1} \textcolor{white}{0,0}\checked,\fcolorbox {black}{gray} {1\textcolor{white}0}\fcolorbox {black}{gray} {0\textcolor{white}0}\fcolorbox {black}{gray} {1\textcolor{white}0} \textcolor{white}{0,0}\checked,
\fcolorbox {black}{gray} {1\textcolor{white}0}\fcolorbox {black}{gray} {0\textcolor{white}0}\fcolorbox {black}{gray} {1\textcolor{white}1} \textcolor{white}{..}$\frac{50}{50}$,usw}
\node[point=2.2em,rotate=\angle] (node\i) at (\angle:8) {\text};
\end{tikzpicture}
\end{center}
\end{document}