aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/110-elliptisch/images/jacobiplots.tex
blob: fec04fc8b3d403fe796074773fec2b0514330c59 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
%
% jacobiplots.tex -- template for standalon tikz images
%
% (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}
\def\dx{1}
\def\dy{2}
\definecolor{darkgreen}{rgb}{0,0.6,0}
\input{jacobipaths.tex}
\def\piticks{
	\draw (3.1415,-0.1) -- (3.1415,0.1);
	\node at (3.1415,0) [below] {$\pi$};
	\draw (6.2831,-0.1) -- (6.2831,0.1);
	\node at (6.2831,0) [below] {$2\pi$};
	\draw (9.4248,-0.1) -- (9.4248,0.1);
	\node at (9.4248,0) [below] {$3\pi$};
	\draw (12.5664,-0.1) -- (12.5664,0.1);
	\node at (12.5664,0) [below] {$4\pi$};
}
\def\mlabel#1{
%\fill[color=gray!50] (-0.2,-6) rectangle (7.0,2.3);
\fill[color=gray!50] (-0.2,1.65) rectangle (7.0,2.3);
\draw[line width=0.5pt] (-0.2,-6) rectangle (7.0,2.3);
\begin{scope}[scale=0.5]
\node at (6.5,{\dy+2}) {$k^2 = #1$};
\end{scope}
}
\def\jacobiplot#1#2#3#4{


\begin{scope}[scale=0.5]
\draw[->] (-0.1,0) -- (13.5,0) coordinate[label={$u$}];
\piticks
\draw[->] (0,-2.1) -- (0,2.5) coordinate[label={right:$\operatorname{sn}(u,k)$}];
\draw[color=red#4] #1;
\end{scope}

\begin{scope}[yshift=-2.5cm,scale=0.5]
\draw[->] (-0.1,0) -- (13.5,0) coordinate[label={$u$}];
\piticks
\draw[->] (0,-2.1) -- (0,2.5) coordinate[label={right:$\operatorname{cn}(u,k)$}];
\draw[color=blue#4] #2;
\end{scope}

\begin{scope}[yshift=-5.5cm,scale=0.5]
\draw[->] (-0.1,0) -- (13.5,0) coordinate[label={$u$}];
\piticks
\draw[->] (0,-0.1) -- (0,3.5) coordinate[label={right:$\operatorname{dn}(u,k)$}];
\draw[color=darkgreen#4] #3;
\end{scope}

}
%\input{blubb.tex}
\begin{tikzpicture}[>=latex,thick,scale=\skala]

\begin{scope}
\mlabel{\mone}
\jacobiplot{\snzero}{\cnzero}{\dnzero}{!50}
\jacobiplot{\snone}{\cnone}{\dnone}{}
\end{scope}

\begin{scope}[xshift=7.3cm]
\mlabel{\mfive}
\jacobiplot{\snzero}{\cnzero}{\dnzero}{!50}
\jacobiplot{\snfive}{\cnfive}{\dnfive}{}
\end{scope}

\begin{scope}[xshift=0cm,yshift=-8.4cm]
\mlabel{\mseven}
\jacobiplot{\snzero}{\cnzero}{\dnzero}{!50}
%\jacobiplot{\sneight}{\cneight}{\dneight}{}
\jacobiplot{\snseven}{\cnseven}{\dnseven}{}
\end{scope}

\begin{scope}[xshift=7.3cm,yshift=-8.4cm]
\mlabel{\mnine}
\jacobiplot{\snzero}{\cnzero}{\dnzero}{!50}
\jacobiplot{\snnine}{\cnnine}{\dnnine}{}
\end{scope}


\end{tikzpicture}
\end{document}