I'm trying to draw a diagram but I get the following error message:
! Xy-pic error: in entry "1,1": No [ld] (is "2,0") from here.
The code is:
\xymatrix{A\times B \ar[ld]_p \ar[rd]_q\\
&A &B}
With the code
\xymatrix{& C \ar@/_/[ld]_f \ar[d]_{(f,g)} \ar@/^/[rd]^g\\
& A\times B \ar[ld]_p \ar[rd]^q\\
A && B}
here's the error I got:
! Xy-pic error: in entry "1,2": No [rd] (is "2,3") from here.
&before the firstA; the second row should beA && B. In your code the first arrow wants to go left, but you're in the leftmost column, so the error. This should be thought of as a three column matrix. – egreg Jun 19 '12 at 14:13[ldd]and[rdd]: you want to go down two rows. Wouldn't it be better to add this to the other very similar question? – egreg Jun 19 '12 at 14:44