[Tex/LaTex] Better arrowheads in commutative diagrams

arrowsdiagramsfontsxy-pic

The Fourier package gives a different look for the arrowheads, which looks nice to me. I also want to use this arrowhead in the commutative diagrams. I have tried Taylor's diagrams package, xy-matrix, but the arrowheads they produce is not the type I want. The best one is the Stealth style arrowhead from tikz. Since I only need simple diagrams, I really don't want to be tortured by tikz complicated syntax. Is it possible to transplant this Stealth style to diagrams or xy-matrix?

Best Answer

TikZ's syntax is complicated because it's powerful. You may only want a simple diagram now, but later on, you'll hit the edge of what's possible with xy. I'd recommend learning the basics of TikZ, the effort will repay itself as soon as you want to draw anything complicated.

And anyway, TikZ syntax isn't that complicated for simple diagrams:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
  % Tell it where the nodes are
  \node (A) {$A$};
  \node (B) [below=of A] {$B$};
  \node (C) [right=of A] {$C$};
  \node (D) [right=of B] {$D$};
  % Tell it what arrows to draw
  \draw[-stealth] (A)-- node[left] {\small $f$} (B);
  \draw[-stealth] (B)-- node [below] {\small $g$} (D);
  \draw[-stealth] (A)-- node [above] {\small $h$} (C);
  \draw[-stealth] (C)-- node [right] {\small $k$} (D);
\end{tikzpicture}
\end{document}

commutative diagram

And you can make things easier by specifying at the start that all paths should have the [-stealth] decoration and so on...