我正在尝试编写一个带有横线或波浪号的多索引张量,通常我使用:
\usepackage{tensind}
\tensordelimiter{?}
\tensorformat{}
但是当我写下:
$?\Tilde{R}_i^{jk}?$
编辑器返回错误。有人能建议我如何解决这个问题吗?谢谢。
答案1
使用大括号:
\documentclass{article}
\usepackage{amsmath}
\usepackage{tensind}
\tensordelimiter{?}
\tensorformat{}
\begin{document}
$?R_i^{jk}?$
$?{\tilde{R}}_i^{jk}?$
\end{document}
请注意,\Tilde
是由 提供的amsmath
,但它只是做与 相同的事情\tilde
(它存在是为了向后兼容)。
使用以下命令可获得相同的输出tensor
:
\documentclass{article}
\usepackage{amsmath}
\usepackage{tensor}
\begin{document}
$\tensor{R}{_i^{jk}}$
$\tensor{\tilde{R}}{_i^{jk}}$
\end{document}