As setas curvas do tikz-cd não funcionam

As setas curvas do tikz-cd não funcionam

Estou usando o Quiver e tenho problemas para fazer diagramas com setas curvas. Por exemplo, propõe-me colocar este é o meu documento:

\begin{tikzcd}[ampersand replacement=\&,column sep=2.25em]
    A \& B
    \arrow[curve={height=-12pt}, from=1-1, to=1-2]
\end{tikzcd}

mas não compila. TexMaker me diz: Erro do pacote tikz: + ou - esperado, e o uso de \tikz@curveCdot não corresponde à sua definição.

Eu uso ambos tikze tikz-cdno meu preâmbulo.

MWE:

\documentclass{article}

\usepackage[french,english]{babel}

\usepackage{tikz-cd}
\usetikzlibrary{calc}

% A TikZ style for curved arrows of a fixed height, due to AndréC.
\tikzset{curve/.style={settings={#1},to path={(\tikztostart)
    .. controls ($(\tikztostart)!\pv{pos}!(\tikztotarget)!\pv{height}!270:(\tikztotarget)$)
    and ($(\tikztostart)!1-\pv{pos}!(\tikztotarget)!\pv{height}!270:(\tikztotarget)$)
    .. (\tikztotarget)\tikztonodes}},
    settings/.code={\tikzset{quiver/.cd,#1}
        \def\pv##1{\pgfkeysvalueof{/tikz/quiver/##1}}},
    quiver/.cd,pos/.initial=0.35,height/.initial=0}



\begin{document}

\begin{tikzcd}[ampersand replacement=\&]
    A \& B
    \arrow[curve={height=-12pt}, from=1-1, to=1-2]
\end{tikzcd}

\end{document}

Responder1

Você está esquecendo de carregar a babelbiblioteca.

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[french,english]{babel}

\usepackage{tikz-cd}
\usetikzlibrary{calc,babel} % <--- IMPORTANT!

% A TikZ style for curved arrows of a fixed height, due to AndréC.
\tikzset{
  curve/.style={
    settings={#1},
    to path={
      (\tikztostart)
      .. controls ($(\tikztostart)!\pv{pos}!(\tikztotarget)!\pv{height}!270:(\tikztotarget)$)
      and ($(\tikztostart)!1-\pv{pos}!(\tikztotarget)!\pv{height}!270:(\tikztotarget)$)
      .. (\tikztotarget)\tikztonodes
    },
  },
  settings/.code={%
    \tikzset{quiver/.cd,#1}%
    \def\pv##1{\pgfkeysvalueof{/tikz/quiver/##1}}%
  },
  quiver/.cd,
  pos/.initial=0.35,
  height/.initial=0,
}

\begin{document}

\begin{tikzcd}[ampersand replacement=\&]
    A \& B
    \arrow[curve={height=-12pt}, from=1-1, to=1-2]
\end{tikzcd}

\begin{tikzcd}
    A & B
    \arrow[curve={height=-12pt}, from=1-1, to=1-2]
\end{tikzcd}

\end{document}

Não há necessidade de ampersand replacement.

insira a descrição da imagem aqui

Responder2

Não conheço a opção curve, mas por que você não usa uma curva simples (esquerda ou direita)?

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

\begin{document}
\begin{tikzcd}[ampersand replacement=\&,column sep=2.25em]
    A \& B
    \arrow[bend right, from=1-1, to=1-2]
\end{tikzcd}
\end{document}

insira a descrição da imagem aqui

informação relacionada