我有下图,我还想让集合\leftrightarrow
处于同一级别,就像我在图片中画的红色箭头一样。我似乎找不到这种箭头的任何代码。我还需要使用其他东西吗\xymatrix
?MWE:
\documentclass{report}
\usepackage[all,cmtip]{xy}
\usepackage{amsmath}
\begin{document}
\[\xymatrix{
\{\text{variet\u a\c ti afine}\}\ar[d]& \{\text{inele finit generate, f\u ar\u a nilpoten\c ti, peste un corp algebric \^inchis }K\}\ar[d]\\
\{\text{scheme afine}\}&\{\text{inele comutative cu unitate\}}}\]
\end{document}
答案1
该\ar
命令后面可以跟用于@{<arrow spec>}
更改箭头类型的命令;对于您的情况,您可以使用
\ar@{<->}[r]
完整示例:
\documentclass{report}
\usepackage{amsmath}
\usepackage[all,cmtip]{xy}
\begin{document}
\[
\xymatrix{
\{\text{variet\u a\c ti afine}\}\ar[d] \ar@{<->}[r] &
\{\text{inele finit generate, f\u ar\u a nilpoten\c ti, peste un corp algebric \^inchis }K\}\ar[d]\\
\{\text{scheme afine}\}& \{\text{inele comutative cu unitate\}}}
\]
\end{document}