我想画一个图来表达以下两个含义:
NM-CCA1 =/=> NM-CCA2
<=
但到目前为止,我还不知道如何在项目之间画两个箭头。我只能画一个,而且我也无法明确表明一个蕴涵不成立。我该怎么做呢?
\begin{displaymath}
\xymatrix{NM-CCA1 \ar@2{->}[r] & NM-CCA2 \ar@2{->}[l]}
\end{displaymath}
答案1
这里,有一叠。
\documentclass{article}
\usepackage{stackengine}
\stackMath
\begin{document}
\[
\def\stacktype{L}
\textrm{NM--CCA1}
\mathrel{\stackunder[.7\baselineskip]{\stackon[0pt]{\Longrightarrow}{/}}{\Longleftarrow}}
\textrm{NM--CCA2}
\]
\end{document}
或者可能是这样,只需进行一个宏更改:
\documentclass{article}
\usepackage{stackengine}
\stackMath
\begin{document}
\[
\def\stacktype{L}
\textrm{NM--CCA1}
\mathrel{\stackanchor[.7\baselineskip]{\stackon[0pt]{\Longrightarrow}{/}}{\Longleftarrow}}
\textrm{NM--CCA2}
\]
\end{document}