I'm trying to create a diagram with logical implications between various propositions, and some of them are conjunctions. Suppose I want to show this:
A => C
A&B => D
the best I can get so far is this, but there's still some space that I can't get rid of:
$$\begin{tikzcd}
a\arrow[d,Rightarrow]
\arrow[dr,Rightarrow,""{name=A}]
& b\arrow[to=A,Rightarrow,dash] \\
c & d
\end{tikzcd}$$
I feel this must be a common problem and probably I'm missing something obvious.


\documentclass, includes all relevant\usepackagecommands, ends with\end{document}and compiles without errors, even if it does not produce your desired output. Also, it's usually best to use\[..\]instead of$$..$$. – Sandy G Oct 08 '20 at 20:18