aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/70-graphen/images/kreis.tex
blob: a926839955ee4ba20ac98b45506818a78ca13b06 (plain)
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
43
44
45
46
47
%
% tikztemplate.tex -- template for standalon tikz images
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\documentclass[tikz]{standalone}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{times}
\usepackage{txfonts}
\usepackage{pgfplots}
\usepackage{csvsimple}
\usetikzlibrary{arrows,intersections,math}
\begin{document}
\def\skala{1}
\begin{tikzpicture}[>=latex,thick,scale=\skala]

\def\r{3}

\foreach \w in {0,20,...,340}{
	\draw (\w:\r) circle[radius=0.2];
	\draw[->,shorten >= 0.2cm,shorten <= 0.2cm] (\w:\r) -- ({\w+20}:\r);
}

\foreach \x in {1,...,15}{
	\node at ({20*(\x-1)}:\r) {$\scriptstyle \x$};
}
\node at (340:\r) {$\scriptstyle n$};
\node at (320:\r) {$\scriptstyle \dots$};
\node at (300:\r) {$\scriptstyle \dots$};

\begin{scope}[xshift=4cm]
\node at (0,0) [right] {$\displaystyle
L=\begin{pmatrix*}[r]
 2&-1& 0& 0&\dots& 0&-1\\
-1& 2&-1& 0&\dots& 0& 0\\
 0&-1& 2&-1&\dots& 0& 0\\
 0& 0&-1& 2&\dots& 0& 0\\
\vdots&\vdots&\vdots&\vdots&\ddots&\vdots&\vdots\\
 0& 0& 0& 0&\dots& 2&-1\\
-1& 0& 0& 0&\dots&-1& 2
\end{pmatrix*}$};
\end{scope}

\end{tikzpicture}
\end{document}