I'm trying to simply use the example of a cube provided here
\begin{tikzpicture}[
back line/.style={densely dotted},
cross line/.style={preaction={draw=white, -,
line width=6pt}}]
\matrix (m) [matrix of math nodes,
row sep=3em, column sep=3em,
text height=1.5ex,
text depth=0.25ex]{
& f^\ast E_V & & E_V \\
f^\ast E & & E \\
& U & & V \\
M & & N \\
};
\path[->]
(m-1-2) edge (m-1-4)
edge (m-2-1)
edge [back line] (m-3-2)
(m-1-4) edge (m-3-4)
edge (m-2-3)
(m-2-1) edge [cross line] (m-2-3)
edge (m-4-1)
(m-3-2) edge [back line] (m-3-4)
edge [back line] (m-4-1)
(m-4-1) edge (m-4-3)
(m-3-4) edge (m-4-3)
(m-2-3) edge [cross line] (m-4-3);
\end{tikzpicture}
(originally from here).
I can't seem to get it to work for whatever reason. It's throwing an error about
l.382 text depth=0.25ex]
For some reason. Anybody have any insight into this? Thanks.

\usetikzlibrary{matrix}? Instead of code snippets, it is always best to compose a MWE that illustrates the problem including the\documentclassand the appropriate packages so that those trying to help don't have to recreate it. – Peter Grill Nov 18 '11 at 17:34