如何使用 autoref 对齐方程式来获取括号

如何使用 autoref 对齐方程式来获取括号

我想使用 autoref 来引用这样的方程式:

公式(8.19),但我的输出是:公式 8.19

我尝试继续进行(搜索“爱因斯坦”)

autoref 和公式编号周围的括号

这是我的代码

\newcommand{\mynewtheorem}[2]{
  \newaliascnt{#1}{definition}
  \newtheorem{#1}[#1]{#2}
  \aliascntresetthe{#1}
  % maybe we will squish some autoref defaults, but who cares?
  \expandafter\def\csname #1autorefname\endcsname{#2}
}
\def\alignautorefname#1#2\null{%
  Equation #1(#2\null)%
}

有人知道如何调整我的代码来获得如上所示的括号吗?

相关内容