我如何枚举用 tikz-cd 制作的图表?
我的意思是,不仅要列举它们,还要列举它们以便稍后在文档中引用它们。
答案1
您只需使用标准equation
环境:
\documentclass{article}
\usepackage{amsmath,tikz-cd}
\usepackage{lipsum}% just to have some text
\begin{document}
\lipsum*[2]
\begin{equation}\label{diagram}
\begin{tikzcd}
A\arrow[r,"f"] \arrow[d,"\alpha"] & B \arrow[d,"\beta"] \\
A' \arrow[r,"f'"] & B'
\end{tikzcd}
\end{equation}
\lipsum*[3]
\begin{equation}\label{equation}
A+B+C=D
\end{equation}
some text after the equation just to see the spacing and
for printing the references to diagram~\eqref{diagram}
and to equation~\eqref{equation}.
\end{document}
我没有看到任何地方有多余的间距。