Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. documentclass{beamer}
  2. usecolortheme{wolverine}
  3. beamertemplatenavigationsymbolsempty
  4. usepackage{tikz}
  5. usetikzlibrary{matrix,arrows,positioning}begin{frame}{Conclusion}
  6.  
  7. From a fibration we obtain a long exact sequence
  8.  
  9. begin{center}
  10. begin{tikzpicture}
  11. matrix[matrix of nodes,ampersand replacement=&, column sep=0.5cm, row sep=0.5cm](m)
  12. {
  13. & $cdots$ & $pi_{n+1}(B)$ \
  14. $pi_{n}(F)$ & $pi_{n}(E)$ & $pi_{n}(B)$ \
  15. $pi_{n-1}(F)$ & $cdots$ & \
  16. };
  17. draw[->] (m-1-2) edge (m-1-3)
  18. (m-1-3) edge[out=0, in=180] (m-2-1)
  19. (m-2-1) edge (m-2-2)
  20. (m-2-2) edge (m-2-3)
  21. (m-2-3) edge[out=0, in=180] (m-3-1)
  22. (m-3-1) edge (m-3-2);
  23. end{tikzpicture}
  24. end{center}
  25.  
  26. i.e., the image of one homomorphism is equal to the kernel of the next one.
  27. end{frame}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement