使用 xy 包在特定交换图中表示不隐含,并使用居中反引号

使用 xy 包在特定交换图中表示不隐含,并使用居中反引号

我有这个MWE:

\documentclass{amsart}
\usepackage[cmtip, all]{xy}
\begin{document}
\xymatrix@R=2pc@C=2pc{ f\in\mathcal C^1(D)   \ar@<.8ex>@{=>}[r] \ar@<-.8ex>@{<=}[r]|{\SelectTips{cm}{}\object@{/}}|{}  & f\,\text{differenziabile} \ar@<.8ex>@{=>}[r] \ar@<-.8ex>@{<=}[r]|{\SelectTips{cm}{}\object@{/}}|{} & f \,\substack{\text{derivabile} \\ \text{parzialmente}}\\
            &  f\,\text{continua} & }
\end{document}

但目前我无法将反引号放在箭头的中心,也无法像下图这样放置暗示和非暗示:

在此处输入图片描述

有什么建议吗?请不要使用 tikz-cd。

答案1

我不会用xy

\documentclass{article}
\usepackage{amsmath}
\usepackage{centernot,array,graphicx}

\begin{document}

\[
\newcommand{\Doublearrows}[2]{% #1 = above, #2 = below
  \mathrel{\raisebox{-0.8ex}{\vbox{\offinterlineskip\ialign{##\cr$#1$\cr$#2$\cr}}}}%
}
\newcommand{\Downlongarrow}{%
  \rotatebox[origin=c]{-90}{$\Longrightarrow$}%
}
\newcommand{\Upnotlongarrow}{%
  \rotatebox[origin=c]{90}{$\centernot{\Longrightarrow}$}%
}
\setlength{\arraycolsep}{0pt}
\begin{array}{c >{{}}c<{{}} c >{{}}c<{{}} c}
f\in\mathcal{C}^1(D) &
\Doublearrows{\mspace{1mu}\Longrightarrow}{\centernot{\Longleftarrow}\mspace{1mu}} &
f\mbox{ differenziabile} &
\Doublearrows{\mspace{1mu}\Longrightarrow}{\centernot{\Longleftarrow}\mspace{1mu}} &
f\ \smash[b]{\substack{\text{derivabile} \\ \text{parzialmente}}} \\
&& \Downlongarrow\;\Upnotlongarrow \\
&& f\mbox{ continua}
\end{array}
\]

\end{document}

在此处输入图片描述

从教学角度来看,我非常怀疑这种图表的实用性。

相关内容