\documentclass{beamer}
\usepackage{tikz-cd}
\usetikzlibrary{matrix}
\begin{document}
\begin{frame}[fragile]
\begin{center}
\begin{tikzcd}[row sep=2.3cm, column sep =
2.3cm]
A\arrow{r}{e}\arrow{d}[swap]{f} & B\arrow{r}
{e1} \arrow{d}{g} &B1 \arrow{d}{g1}\\
C\arrow{r}[swap]{h} & D \arrow{r}[swap]
{h}&D1\\
\end{tikzcd}
\end{center}
\end{frame}
\end{document}
Aquí me gustaría cambiar cada flecha a una flecha doble/paralela. Estoy usando Leftrightarrow
la opción, por ejemplo, \arrow{r, Leftrightarrow}
pero recibo errores.
Se agradecería cualquier ayuda para resolver el problema.
Respuesta1
Puedes usar la opciónarrows=Leftrightarrow
\documentclass{beamer}
\usepackage{tikz-cd}
\usetikzlibrary{matrix}
\begin{document}
\begin{frame}[fragile]
\begin{center}
\begin{tikzcd}[
row sep=2.3cm,
column sep=2.3cm,
arrows=Leftrightarrow,
]
A\arrow{r}{e}\arrow{d}[swap]{f} & B\arrow{r}
{e1} \arrow{d}{g} &B1 \arrow{d}{g1}\\
C\arrow{r}[swap]{h} & D \arrow{r}[swap]
{h}&D1\\
\end{tikzcd}
\end{center}
\end{frame}
\end{document}
La sintaxis "moderna" es más sencilla:
\begin{tikzcd}[
row sep=2.3cm,
column sep=2.3cm,
arrows=Leftrightarrow,
]
A \arrow[r,"e"] \arrow[d,swap,"f"] &
B \arrow[r,"e1"] \arrow[d,"g"] &
B1 \arrow[d,"g1"]
\\
C \arrow[r,swap,"h"] & D \arrow[r,swap,"h"] &
D1
\end{tikzcd}
Digamos que sólo la flecha superior izquierda debe ser Leftrightarrow
; entonces se puede ingresar como
\arrow[r,Leftrightarrow,"e"]
Por ejemplo, con
\begin{tikzcd}[
row sep=2.3cm,
column sep=2.3cm,
]
A \arrow[r,Leftrightarrow,"e"] \arrow[d,swap,"f"] &
B \arrow[r,"e1"] \arrow[d,"g"] &
B1 \arrow[d,"g1"]
\\
C \arrow[r,swap,"h"] & D \arrow[r,swap,"h"] &
D1
\end{tikzcd}
obtendrías