如何避免 tikz-cd 中尺寸的这种变化

如何避免 tikz-cd 中尺寸的这种变化

我很高兴得知这里如何使用标签而不是幻影对角线在 tikz-cd 方块中放置“回拉角”装饰,但现在我注意到标签技术似乎会影响图表的尺寸。代码

\documentclass{article}
\usepackage{tikz-cd,amssymb}

\begin{document}
\[
\begin{tikzcd}
U\cap V \ar[r] \ar[d] & V \ar[d] \\
U \ar[r] & |[label={[label distance=-3mm]135:\ulcorner}]| P
\end{tikzcd}
\quad
\begin{tikzcd}
U\cap V \ar[r] \ar[d] & V \ar[d] \\
U \ar[r] & P 
\end{tikzcd}
\quad
\begin{tikzcd}
U\cap V \ar[r] \ar[d] & V \ar[d] \\
U \ar[r] & P \ar[ul, phantom,"\ulcorner",pos=0]
\end{tikzcd}
\]
\end{document}

生成下图:

三个正方形

左边的方块使用了标签,比中间没有装饰的方块大,而右边的方块则在幻影对角线上放置了装饰。

有没有办法避免这种调整大小?

相关内容