Adicionando uma implicação a um gráfico

Adicionando uma implicação a um gráfico

Gostaria de adicionar um sinal de implicação longo entre "Symm" e "Ref"

insira a descrição da imagem aqui

sem alterar a aparência do gráfico.

Estou fazendo assim:

\documentclass{article}

\begin{document}
\[
\begin{array}
[c]{cccccccc}
& & Symm & \Longrightarrow & S-Comm &\\
& & \Uparrow & & \Uparrow & \\
Comm & \Longrightarrow & F-Symm & \Longrightarrow & Rev & \Longrightarrow & Per & \Longrightarrow^{\ast}M\\
& & \Uparrow & & \Downarrow & \\
& & Red & & Ref &
\end{array}
\]

\end{document}

Responder1

Aqui está uma possibilidade com tikz-cd; provavelmente existe uma maneira melhor de colocar o asterisco.

\documentclass{article}

\usepackage{amsmath}
\usepackage{tikz-cd}

\begin{document}

\begin{tikzcd}[arrows=Rightarrow]
& \text{Symm} \arrow[r] \arrow[ddr] & \text{S-Comm} \\
\text{Comm} \arrow[r] & \text{F-Symm} \arrow[u] \arrow[r,crossing over] &
  \text{Rev} \arrow[r] \arrow[d] \arrow[u] &
  \text{Per} \arrow[r,Rightarrow,"\;\;*" very near end] & \text{M} \\
& \text{Red} \arrow[u] & \text{Ref}
\end{tikzcd}

\end{document}

insira a descrição da imagem aqui

Responder2

Tenho certeza de que existe uma maneira mais fácil de fazer isso, mas é assim que eu faria: make \mBoxfunction

\documentclass{article}
\usepackage{tikz}
\usepackage{ifthen}

\newcommand{\mBox}[6]{
\draw #1 node {#3};
\ifthenelse{#4=1}{\draw #1+(#2,-0.05) node {$\Longrightarrow$};}{}
\ifthenelse{#5=1}{\draw #1+(0,0.8) node {\rotatebox{90}{$\Longrightarrow$}};}{}
\ifthenelse{#6=1}{\draw #1+(-0.05,-0.8) node {\rotatebox{-90}{$\Longrightarrow$}};}{}
}

\begin{document}

\begin{center}
\begin{tikzpicture}
\mBox{(0,0)}{1}{Comm}{1}{0}{0}
\mBox{(2.2,-0.05)}{1}{F-Symm}{1}{1}{1}
\mBox{(2.2,1.5)}{1}{Symm}{1}{0}{0}
\end{tikzpicture}
\end{center}

\end{document}

informação relacionada