带有书法字符的 Tensor 包

带有书法字符的 Tensor 包

我看过tensor 包裹。确实只需要索引……但是是否可以将此包中的书法字符与 MWE 一起使用?

\documentclass[12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{tensor}

\begin{document}
$\tensor[_\mathcal{A}]{C}{_\mathcal{B}}$
\end{document}

例如,有了这个 MWE,我就知道存在哪些错误。

! Package tensor Error: Sub/Superscript items out of order on input line 6, 
(tensor)                some index tokens may now have been lost.

See the tensor package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.6     $\tensor[_\mathcal{A}]{C}{_\mathcal{B}}
                                               $

答案1

使用大括号。

\documentclass[12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{tensor}

\begin{document}
$\tensor[_{\mathcal{A}}]{C}{_{\mathcal{B}}}$
\end{document}

相关内容