O editor quiver me mostra isso
Mas quando copio, colo e compilo em um projeto em branco no verso, recebo isto
Este é o código que estou usando
\documentclass{article}
\usepackage[spanish]{babel}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{tikz-cd}
\usetikzlibrary{babel}
\usepackage{quiver}
\begin{document}
\[\begin{tikzcd}
F &&& F \\
&&&& {} \\
{K(s_2,...,s_n)(T)} & {} & {} & {K(s_2,...,s_n)(s_1)} \\
& {K(T)} \\
{K(s_2,...,s_n)} &&& {K(s_2,...,s_n)}
\arrow["{\textrm{alg.} \\ ( \textrm{transit.})}"{description}, hook, from=3-1, to=1-1]
\arrow[shorten <=2pt, Rightarrow, from=3-2, to=3-3]
\arrow[hook', from=3-4, to=1-4]
\arrow["{\textrm{alg.} \\ (T \textrm{ base})}"', hook, from=4-2, to=1-1]
\arrow[hook', from=4-2, to=3-1]
\arrow["{\textrm{alg.}}", curve={height=-30pt}, hook', from=5-1, to=1-1]
\arrow["{\textrm{alg.} \\ \textrm{(si no, abs)}}"', hook', from=5-1, to=3-1]
\arrow["{\textrm{alg.}}", curve={height=-30pt}, from=5-4, to=1-4]
\arrow["{\textrm{alg.} \\ (\textrm{transit.})}"', hook', from=5-4, to=3-4]
\end{tikzcd}\]
\end{document}
Alguém sabe por que isso está acontecendo?
Responder1
Você já possui todas as quebras de linha indicadas no seu código. Em vez de alterar seu diagrama, você pode simplesmente habilitá-los com
\tikzcdset{
arrows={align=center}
}
MWE completo:
\documentclass{article}
\usepackage[spanish]{babel}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{tikz-cd}
\usetikzlibrary{babel}
\usepackage{quiver}
\tikzcdset{
arrows={align=center}
}
\begin{document}
\[\begin{tikzcd}[sep=large]
F &&& F \\
&&&& {} \\
{K(s_2,...,s_n)(T)} & {} & {} & {K(s_2,...,s_n)(s_1)} \\
& {K(T)} \\
{K(s_2,...,s_n)} &&& {K(s_2,...,s_n)}
\arrow["{\textrm{alg.} \\ (\textrm{transit.})}"{description}, hook, from=3-1, to=1-1]
\arrow[shorten <=2pt, Rightarrow, from=3-2, to=3-3]
\arrow[hook', from=3-4, to=1-4]
\arrow["{\textrm{alg.} \\ (T \textrm{ base})}"', hook, from=4-2, to=1-1]
\arrow[hook', from=4-2, to=3-1]
\arrow["{\textrm{alg.}}", curve={height=-60pt}, hook', from=5-1, to=1-1]
\arrow["{\textrm{alg.} \\ \textrm{(si no, abs)}}"', hook', from=5-1, to=3-1]
\arrow["{\textrm{alg.}}", curve={height=-60pt}, from=5-4, to=1-4]
\arrow["{\textrm{alg.} \\ (\textrm{transit.})}"', hook', from=5-4, to=3-4]
\end{tikzcd}\]
\end{document}
Responder2
Fiz algumas edições no seu código, apenas na figura da esquerda. Eu adicionei um array
para escrever o texto em duas linhas.
\documentclass{article}
\usepackage[spanish]{babel}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage{tikz-cd}
\usetikzlibrary{babel}
\usepackage{quiver}
\begin{document}
\[\begin{tikzcd}
F &&& F \\
&&&& {} \\
{K(s_2,...,s_n)(T)} & {} & {} & {K(s_2,...,s_n)(s_1)} \\
& {K(T)} \\
{K(s_2,...,s_n)} &&& {K(s_2,...,s_n)}
\arrow["{\arraycolsep=1pt\def\arraystretch{0.8}\begin{array}{c} \textrm{alg.} \\ \textrm{(transit.)}\end{array}}"{description}, hook, from=3-1, to=1-1]
\arrow[shorten <=2pt, Rightarrow, from=3-2, to=3-3]
\arrow[hook', from=3-4, to=1-4]
\arrow["{\arraycolsep=1pt\def\arraystretch{.8}\begin{array}{c} \textrm{alg.} \\ \textrm{($T$ base)}\end{array}}"', hook, from=4-2, to=1-1]
\arrow[hook', from=4-2, to=3-1]
\arrow["{\arraycolsep=.5pt\begin{array}{c} \textrm{alg.}\\ \end{array}}", curve={height=-50pt}, hook', from=5-1, to=1-1]
\arrow["{\arraycolsep=1pt\def\arraystretch{0.8}\begin{array}{c} \textrm{\quad alg.} \\ \quad \textrm{(si no, abs)}\end{array}}"', hook', from=5-1, to=3-1]
\arrow["{\textrm{alg.}}", curve={height=-30pt}, from=5-4, to=1-4]
\arrow["{\textrm{alg.} \\ (\textrm{transit.})}"', hook', from=5-4, to=3-4]
\end{tikzcd}\]
\end{document}
Responder3
Isso foi um bug notremoreditor de diagramas, que anteriormente não era capaz de exportar diagramas contendo quebras de linha. Isso foi corrigido a partir da versão 1.5.1. Se você reabrir seu diagrama no editor (o que pode ser feito abrindo o link fornecido com o diagrama exportado) e reexportá-lo, você obterá a saída TikZ correta.
No futuro, se você encontrar problemas comtremorsaída, por favorreporte no bug tracker, para que possa ser corrigido.
(Obrigado às outras respostas por fornecerem soluções entretanto.)