Winkel einzeichnen in Dreiecken, welche im Quadrat eingeschlossen sind
Hallo Foris,
ich habe wieder ein Problem mit dem Einzeichnen von Winkel in Dreiecke, welche in einem Rechteck (Quadrat) um gegeben sind. Die Winkel habe folgende Werte: A 30/60Grad, B 60/30Grad, C 75/15 Grad, D 15/75 Grad, E 150/75/60/75 Grad. Ich hoffe, mich einigermaßen verständlich ausgedrückt zu haben.
Vielen Dank im Voraus.
Gruß
Martin
PS.: Wie bekomme ich den Code hier schneller rein???
\documentclass[margin=5mm]{standalone}
\usepackage[ngerman]{babel}
\usepackage{selinput}
\SelectInputMappings{adieresis={ä}, germandbls={ß}}
\usepackage{tikz}
\usetikzlibrary{calc,angles,quotes,babel, plotmarks}
\begin{document}
\begin{tikzpicture}[font=\footnotesize, scale=0.25]
\begin{tikzpicture}[font=\footnotesize,scale=1.3]
%Koordinaten
\coordinate (A) [label=below:A](A) at (0,0);
\coordinate [label=below:B](B) at (10,0);
\coordinate [label=above:C](C) at (10,10);
\coordinate [label=above:D](D) at (0,10);
\coordinate [label=above:E](E) at (60:10);
%Viereck
\draw(A) -- (B) at (10,0);
\coordinate -- (C) at (10,10);
\coordinate -- (D) at (0,10);
\coordinate (E) at (5,8.7);
\draw(A) -- (B) -- (C) -- (D) -- cycle;
-- cycle;
\foreach \p in {A,B,C,D} \draw (\p) -- (E);
%Winkel
\begin{scope}[winkel/.style={draw,font=\normalsize,transform shape}]
\pic foreach \t/\a/\b/\c in {
\beta 150/C/E/D,
75/D/E/A,75/B/E/C,75/A/D/E,75/E/C/B,
60/B/A/E,60/E/B/A,60/A/E/B%
}
["$\t^\circ$",angle radius=1.2cm,winkel]{angle=\a--\b--\c};
\pic foreach \t/\a/\b/\c in {
30/E/A/D,30/C/B/E,
15/E/D/C,15/D/C/E%
}
["$\t^\circ$",angle radius=2cm,angle eccentricity=.8,winkel]{angle=\a--\b--\c};
\end{scope}
\end{tikzpicture}
\end{document}