1

I have a (probably easy) question on tikzcd: I want to draw two arrows from bottom to top, intersecting each other and having a label. What I tried so far

\begin{tikzcd}

\gamma & \kappa \\
 &  \\
\arrow{uur} &  \arrow{uul}
\end{tikzcd}

Which gives

enter image description here

But this looks not really symmetric. Where is the problem? I also tried to eally use labels on the arows but it was never really clear to see which label belongs to which arrow. Any suggestions?

1 Answers1

3

An alternative is, related to How to cross over only at intersections in tikzcd:

\documentclass{article}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}[column sep = large, row sep = large]
  \ar[from=2-2]\gamma & \ar[from=2-1]\kappa\\
  \null & \null
\end{tikzcd}
\end{document}

Result:

enter image description here

EDIT: Related to your comment i added only a workaround with white space.

\documentclass{article}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}[column sep = large, row sep = large]
  \ar[from=2-2]\gamma & \ar[from=2-1]\kappa\\
  \textcolor{white}{\gamma} & \textcolor{white}{\kappa}
\end{tikzcd}
\end{document}

enter image description here

Bobyandbob
  • 4,899