amscd 包问题

amscd 包问题

我正在尝试将交换图插入到报告中。我已加载 amscd 包,但其图表有问题。

当我放置向上或向下箭头时,没有任何问题。例如,

enter image description here

得到正确的图表

但是当我尝试使用左箭头或右箭头时它不起作用。

enter image description here

文档左侧只显示一个孤立的 A。我做错了什么?

答案1

如果没有一些对策,环境CD就无法正常运转。babel-spanish

策略1:\shorthandoff

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[spanish]{babel}
\usepackage{amsmath,amscd}

\begin{document}

\begin{equation}
\begin{CD}
A \\
@VVV \\
B
\end{CD}
\end{equation}

\begin{equation}
\shorthandoff{<>}
\begin{CD}
A @>>> B
\end{CD}
\end{equation}

\end{document}

策略2:es-noquoting

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[spanish,es-noquoting]{babel}
\usepackage{amsmath,amscd}

\begin{document}

\begin{equation}
\begin{CD}
A \\
@VVV \\
B
\end{CD}
\end{equation}

\begin{equation}
\begin{CD}
A @>>> B
\end{CD}
\end{equation}

\end{document}

spanish-babel请参阅可用的文档texdoc spanish在线的

相关内容