overleaf 中 xymatrix 的问题

overleaf 中 xymatrix 的问题

我对这段代码有点问题。我在 overleaf 中编译了它,但在 pdf 文档中看不到任何内容。

$$\xymatrixcolsep{32pt}\xymatrix{
P_{c_1}\oplus \cdots \oplus P_{c_s} \ar[r]^-{\left(P[\bar{\gamma}_{ij}]\right)_{r\times s}} \ar[d]^{f_2} & P_{b_1} \oplus \cdots \oplus P_{b_r} \ar[rr]^-{(P[\bar{\alpha}_1],\cdots, P[\bar{\alpha}_r])} \ar[d]^{f_1} && P_a \ar[r]^{d_a} \ar[d]^{f_a} & S_a \ar[r] \ar@{=}[d] & 0\\
K^{-2}_a\ar[r]^{\partial_a^{-2}} & K^{-1}_a \ar[rr]^{\partial_a^{-1}} && K^0_a\ar[r]^{\partial_a^{\hspace{.4pt}0}} & S_a \ar[r]  & 0,}$$

有人能给我一些想法吗?谢谢

答案1

根据用户的最后一条评论,这里有一个带有的版本tikz-cd

\documentclass[a4paper,12pt]{article}
\usepackage{tikz-cd}
\usepackage{amssymb}
\usepackage[margin=2cm]{geometry}
\begin{document}

\[\begin{tikzcd}[row sep=huge, column sep = huge]
P_{c_1}\oplus \cdots \oplus P_{c_s} \arrow[d, "f_2"] \arrow[r, "{\scriptstyle (P[\bar{\gamma}_{ij}])_{r\times s})}"] & P_{b_1} \oplus \cdots \oplus P_{b_r}  \arrow[r, "{(P[\bar{\alpha}_1],\cdots, P[\bar{\alpha}_r])}"] \arrow[d, "f_1"] & P_{a} \arrow[r, "d_a"] \arrow[d, "f_a"] & S_a \arrow[r] \arrow[d, equal] & 0 \\
K^{-2}_a \arrow[r, "\partial_a^{-2}"] & K^{-1}_a  \arrow[r, "\partial_a^{-1}"] & K^0_a \arrow[r, "\partial_a^{0}"] & S_{a} \arrow[r] & 0
\end{tikzcd}\]


\end{document}

在此处输入图片描述

相关内容