1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
\begin{tikzpicture}[
scale=1.5,
coarse/.style={circle,draw=black,thick,inner sep=4},
fine/.style={cross out,draw=black,thick,inner sep=2},
arrow/.style={-{Latex[length=2mm]},thick}
]
\foreach \x in {-1,...,3}
\foreach \y in {0,...,2}
\node[coarse] at (\x,\y){ };
\foreach \x in {0,...,8}
\foreach \y in {0,...,4}
\node[fine] at (2+\x*0.5,\y*0.5){ };
\draw[dashed,thick] (1.8,-0.2) rectangle (2.2,2.2);
\draw[dashed,thick] (2.8,-0.2) rectangle (3.2,2.2);
\draw[arrow] (2,3.3) node[right] {Übertragung von grob nach fein, \(\U_{g \to f}\)} -- (2,2.3);
\draw[arrow] (3,2.8) node[right] {Übertragung von fein nach grob, \(\U_{f \to g}\)} -- (3,2.3);
\draw[decorate,decoration={brace,amplitude=10pt,mirror},line width=1pt]
(1.8,-0.4) -- (3.2,-0.4) node[midway,below,yshift=-6pt] {Übergangsbereich};
\end{tikzpicture}
|