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}

在此輸入影像描述

相關內容