Latex 命令给出奇怪的符号

Latex 命令给出奇怪的符号
\begin{align*}
(\Delta\otimes id)\cal{R}=\cal{R}_{13}\cal{R}_{23}, 
(id\otimes \Delta)\cal{R}=\cal{R}_{13}\cal{R}_{12},\\
\tau\circ \Delta h=\cal{R}(\Delta h)\cal{R}^{-1}, \forall h \in H
\end{align*}

上面的 LaTeX 代码在下标中给出了奇怪的符号,但我不知道原因。

在此处输入图片描述

答案1

\cal{R}从 LaTeX 诞生的第一天起,语法就是错误的。

在古代,获得书法“R”的正确方法是

{\cal R}

但大约 30 年前,新的语法

\mathcal{R}

被提出并且旧版本被弃用。

\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}

\theoremstyle{definition}
\swapnumbers
\newtheorem{definition}{Definition}

\newcommand{\cR}{\mathcal{R}}
\newcommand{\cH}{\mathcal{H}}
\newcommand{\id}{\mathit{id}}

\begin{document}

\begin{definition}
A quasitriangular Hopf algebra is a pair $(H,\cR)$ where $H$
is a Hopf algebra and $\cR\in\cH\otimes\cH$ and obeys
\begin{gather*}
(\Delta\otimes \id)\cR=\cR_{13}\cR_{23}, \quad
(\id\otimes \Delta)\cR=\cR_{13}\cR_{12},\\
\tau\circ \Delta h=\cR(\Delta h)\cR^{-1}, \forall h \in H
\end{gather*}
\end{definition}

\end{document}

在此处输入图片描述

相关内容