Diagrams – Creating a Covering Map Arrow

arrowsdiagrams

I am trying to draw an arrow going down similar to these we usually see in topolgy books. For example, when we study covering spaces we usually put the covering space and then an arrow and then the base space.

Any help is appreciated.

Here is a picture:

Best Answer

I support the use of TikZ for diagrams, but if you are looking for something slightly simpler, you could try the amscd package.

@>>> and @VVV make right and down arrows, respectively. You can also use @<<< and @AAA for left or up arrows. The arrow labels go between the first and second characters or between the second and third characters, depending on whether you want them above/left or below/right.

\documentclass{article}
\usepackage{amscd}
\begin{document}

\[
  \begin{CD}
    E @>\tilde{f}>> F\\
    @V\pi_{E}VV @VV\pi_{F}V\\
    M @>>f> N
  \end{CD}
\]

\end{document}

diagram

Related Question