As you can see in the following example, there is too much empty space between the text and the diagram when I use an arrow with bend left=100, looseness=2.
How can I avoid it?
\documentclass{article}
\usepackage{tikz-cd}
\usepackage{mwe}
\begin{document}
\blindtext As you can see, there is too much empty space here:
\[
\begin{tikzcd}
D\ar[r]\ar[dr, bend left=100,
looseness=2]&U\ar[dl]\\
C\ar[r] & K
\end{tikzcd}
\]
\blindtext
\[
\begin{tikzcd}
D\ar[r]&U\ar[dl]\\
C\ar[r] & K
\end{tikzcd}
\]
\blindtext
\end{document}


\useasboundingbox... – CarLaTeX Feb 05 '22 at 09:35\useasboundingbox(I have no idea how intikz-cdas I don't use it), that would be a manual approach to fix this. – Skillmon Feb 05 '22 at 09:37