aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/95-homologie/images/dreieck.tex
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@ost.ch>2021-02-09 21:52:16 +0100
committerAndreas Müller <andreas.mueller@ost.ch>2021-02-09 21:52:16 +0100
commitada53a9c225b896c8d7608300427aac475bb7045 (patch)
tree1b1fe99c3e78256ff839611225dd61d983b96575 /buch/chapters/95-homologie/images/dreieck.tex
parentIllustrationen Markov-Ketten (diff)
downloadSeminarMatrizen-ada53a9c225b896c8d7608300427aac475bb7045.tar.gz
SeminarMatrizen-ada53a9c225b896c8d7608300427aac475bb7045.zip
move all iamges to separate files
Diffstat (limited to 'buch/chapters/95-homologie/images/dreieck.tex')
-rw-r--r--buch/chapters/95-homologie/images/dreieck.tex54
1 files changed, 54 insertions, 0 deletions
diff --git a/buch/chapters/95-homologie/images/dreieck.tex b/buch/chapters/95-homologie/images/dreieck.tex
new file mode 100644
index 0000000..1c28bc7
--- /dev/null
+++ b/buch/chapters/95-homologie/images/dreieck.tex
@@ -0,0 +1,54 @@
+%
+% dreieck.tex -- Dreieck und Simplex
+%
+% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
+%
+\documentclass[tikz]{standalone}
+\usepackage{amsmath}
+\usepackage{times}
+\usepackage{txfonts}
+\usepackage{pgfplots}
+\usepackage{csvsimple}
+\usetikzlibrary{arrows,intersections,math}
+\begin{document}
+\def\skala{1}
+\begin{tikzpicture}[>=latex,thick,scale=\skala]
+
+\def\punkt#1{
+ \fill[color=white] #1 circle[radius=0.07];
+ \draw #1 circle[radius=0.07];
+}
+\begin{scope}[xshift=3cm]
+\draw[->] (0,0) -- (3,3);
+\draw[->] (0,0) -- (4,1);
+\draw[->] (4,1) -- (3,3);
+\node at (0,0) [below left] {$P_0$};
+\node at (4,1) [below right] {$P_1$};
+\node at (3,3) [above] {$P_2$};
+\punkt{(0,0)}
+\punkt{(4,1)}
+\punkt{(3,3)}
+\node at (2,0.5) [below] {$k_{01}$};
+\node at (1.5,1.5) [above left] {$k_{02}$};
+\node at (3.5,2) [right] {$k_{12}$};
+\end{scope}
+\begin{scope}[xshift=-3cm]
+\fill[color=gray!40] (0,0) -- (4,1) -- (3,3) -- cycle;
+\draw[->] (0,0) -- (3,3);
+\draw[->] (0,0) -- (4,1);
+\draw[->] (4,1) -- (3,3);
+\node at (0,0) [below left] {$P_0$};
+\node at (4,1) [below right] {$P_1$};
+\node at (3,3) [above] {$P_2$};
+\node at (2,0.5) [below] {$k_{01}$};
+\node at (1.5,1.5) [above left] {$k_{02}$};
+\node at (3.5,2) [right] {$k_{12}$};
+\node at (2.333,1.333) {$\triangle$};
+\punkt{(0,0)}
+\punkt{(4,1)}
+\punkt{(3,3)}
+\end{scope}
+
+\end{tikzpicture}
+\end{document}
+