以下語法建立一個正方形圖,其角落標記為(左上角) a --->b ,然後底部兩個角落(從左到右)為 c ---> d 。
我可以使用 VV 指令顯示分別從 a 到 c 和從 b 到 d 向下的垂直向下箭頭。如何反轉垂直向下箭頭的方向,使方向現在從 c 到 a,從 d 到 b?我正在使用在 Windows 上運行的編輯器 TexMaker。
$$
\require{AMScd}
\begin{CD}
\mathcal{a} @>{f}>> \mathcal{b}\\
@V{S}VV @V{S}VV \\
c @>{\sigma}>> d\end{CD}
$$
答案1
使用tikz-cd
。這要簡單得多。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{cd}
\begin{document}
\begin{tikzcd}
a \ar[r,"f"] & b \\
c \ar[u,"S"]\ar[r,"\sigma"] & d \ar[u,"S"] \\
\end{tikzcd}
\end{document}
如果您堅持使用amscd
,則A
說明符代表向上箭頭。
\documentclass{article}
\usepackage{amsmath,amscd}
\begin{document}
\begin{equation*}
\begin{CD}
a @>{f}>> b \\
@A{S}AA @A{S}AA \\
c @>{\sigma}>> d
\end{CD}
\end{equation*}
\end{document}