commutative-diagram.tex 933 B

123456789101112131415161718192021222324252627
  1. \documentclass{article}
  2. \usepackage[pdftex,active,tightpage]{preview}
  3. \setlength\PreviewBorder{2mm}
  4. \usepackage{tikz}
  5. \usetikzlibrary{arrows,positioning,fit,shapes}
  6. \begin{document}
  7. \begin{preview}
  8. \begin{tikzpicture}[scale=1,node distance=2.0cm]
  9. \node (Phi) at (0,0) {$\Phi: V$};
  10. \node (W) [right of=Phi] {$W$};
  11. \node (Kn) [below of=Phi] {$K^n$};
  12. \node (Km) [right of=Kn]{$K^m$};
  13. \node[text=green] (TN) at (1,0.7) {Koordinatenfrei};
  14. \node[text=orange] (TS) at (1,-2.6) {Konkretes Rechnen};
  15. \draw[->, above] (Phi) to node {$\Theta_B$} (W);
  16. \draw[->, below] (Kn) to node {$\Theta_{B'}$} (Km);
  17. \draw[->, left] (Phi) to node {$\Theta_B$} (Kn);
  18. \draw[->, right] (W) to node {$\Theta_{B'}$} (Km);
  19. \node [ellipse,fit={(Kn) (Km) (TS)}, draw=orange, thick, text=orange]
  20. {};
  21. \node [ellipse,fit={(Phi) (W) (TN)}, draw=green, thick, text=green]
  22. {};
  23. \end{tikzpicture}
  24. \end{preview}
  25. \end{document}