Seite 1 von 1

Mathematische Skizze erstellen

Verfasst: Sa 29. Feb 2020, 20:34
von Sabbse92
Hallo zusammen,

wäre es möglich mit LaTeX die folgende Skizze erstellen:

Bild

Verfasst: Sa 29. Feb 2020, 20:48
von Johannes_B
Nutze die Upload-Funktion des Forums.

Verfasst: Sa 29. Feb 2020, 21:01
von Bartman
Die meisten Nutzer werden dafür wohl pgf/TikZ nehmen.

Ein Anfänger dürfte die Anordnung der Kreise und das Zeichnen der Verbindungslinien bewältigen.

Verfasst: Mo 2. Mär 2020, 09:25
von markusv
\documentclass[tikz,border=5mm]{standalone}
\begin{document}
	\begin{tikzpicture}
		\coordinate[]  (1) at (120:3);
		\coordinate[]  (2) at (60:3);
		\coordinate[]  (3) at (0:3);
		\coordinate[]  (4) at (-60:3);
		\coordinate[]  (5) at (-120:3);
		\coordinate[]  (6) at (-180:3);
		\draw[gray,thin] (1) -- (2) -- (3) -- (4) -- (5) -- (6) -- (1);
		\draw[gray,thin] (1) -- (3) -- (5) (2) -- (4) -- (6);
		\foreach \x/\y in {1/30,2/120,3/330,4/210,5/80,6/150}
		{
		\draw[gray,thin] (0,0) -- (\x);
		\draw[thick] (\x) circle(1cm);
		\path (0,0) -- (\x) node[pos=1.5] {\(\omega_\x\)};
		\draw[thick,fill] (\x) --++ (\y:1) circle (2pt) node[pos=1.35] {\(\theta_\x\)};
		\draw[thick, dashed] (\x) --++ (1,0) coordinate[pos=.75] (a\x);
		\draw[thick,-latex] (a\x) arc(0:\y:.75cm);}
	\end{tikzpicture}
\end{document}

Verfasst: Mo 2. Mär 2020, 15:12
von Bartman

Bei Dir fehlt noch die Linie zwischen dem ersten und dem fünften Kreis.

Eine Alternative zu diesem Beispiel:

\documentclass[tikz,border=5pt]{standalone}
\usetikzlibrary{arrows.meta}

\begin{document}
\begin{tikzpicture}
    \newcommand{\radius}{1cm}
    \foreach \angle [count=\circleNumber] in {120,60,...,-180}
        \coordinate (\circleNumber) at (\angle:3*\radius);
    \foreach \circleOut in {1,...,6}{
        \foreach \circleIn in {\circleOut,...,6}{
            \ifnum \circleOut<\circleIn
                \draw [lightgray] (\circleOut) -- (\circleIn);
            \fi
        }
    }
    \foreach \angle [count=\circleNumber] in {30,120,330,210,80,150}{
        \path 
            (0,0) -- (\circleNumber) 
                node [pos=1.5] {\(\omega_\circleNumber\)}
        ;
        \begin{scope}[thick]
        \draw (\circleNumber) circle [radius=\radius];
        \draw [fill] 
            (\circleNumber) --+ (\angle:\radius) circle [radius=2pt]
                node [pos=1.35] {\(\theta_\circleNumber\)}
        ;
        \draw [dashed] 
            (\circleNumber) --+ (\radius,0)
                coordinate [pos=2/3] (a\circleNumber)
        ;
        \draw [-{Triangle[scale=.6]}] (a\circleNumber) 
            arc [start angle=0, end angle=\angle, radius=2/3*\radius]
        ;
        \end{scope}
    }
\end{tikzpicture}
\end{document}
Bartman_mathematische_Skizze.png
Bartman_mathematische_Skizze.png (52.23 KiB) 2274 mal betrachtet