我在 beamer 文档中有以下代码:
\begin{equation*}
\begin{tikzcd}[ampersand replacement=\&, column sep=small, row sep=small]
\& \arrow[dl,dash] d \arrow [dr,dash] \& \& \text{\footnotesize finer} \\
\tau_a \arrow [dr,dash] \& \& \arrow[dl,dash] \tau_b \& \\
\& \chi \& \& \text{\footnotesize coarser} \arrow[uuu]
\end{tikzcd}
\end{equation*}
这个想法是,图表的侧面应该有一个箭头,将“较粗”与“较细”连接起来;然而,箭头并没有按照指示向上移动三行,而是似乎在一行之上,一行向左移动。
我怎样才能解决这个问题?
答案1
你只是吃得u
太多而已。
\documentclass{article}
\usepackage{amsmath,tikz-cd}
\begin{document}
\begin{equation*}
\begin{tikzcd}[ampersand replacement=\&, column sep=small, row sep=small]
\& \arrow[dl,dash] d \arrow [dr,dash] \& \& \text{\footnotesize finer} \\
\tau_a \arrow [dr,dash] \& \& \arrow[dl,dash] \tau_b \& \\
\& \chi \& \& \text{\footnotesize coarser} \arrow[uu]
\end{tikzcd}
\end{equation*}
\end{document}