找不到精算角度的命令

找不到精算角度的命令

我正在尝试正确呈现以下公式:

在此处输入图片描述

这是我目前得到的:

aufgel"ost nach $B^A$ ergibt sich

\begin{equation}
    \boxed{B^A = \mathit{VS} \cdot \frac{_{\textbar n}A_x + \mathrm{"a}_{x:n} \cdot \gamma}{(1 - \beta) \cdot \mathrm{"a}_{x:t} - t \cdot \alpha^Z}}
\end{equation}

bzw. f"ur $t = n$

渲染结果:

结果

但是,我在 AMS 符号列表中找不到字母nt分子和分母中的精算角度符号。

答案1

虽然这可能被关闭为在 ConTeXt 中排版年金和人寿保险符号,给未来读者的提示 - 不要使用其接受答案中建议的自制构造,而要考虑actuarialangle在 LaTeX 中使用符号。该包是 TeXLive 的一部分,因此您不需要安装任何其他东西。上面的公式最终如下所示:

\usepackage[thickspace,nobracket]{actuarialangle}

...

\begin{equation}
    \boxed{B^A = \mathit{VS} \cdot \frac{_{\textbar n}A_x + \mathrm{"a}_{x:\actuarialangle{n}} \cdot \gamma}{(1 - \beta) \cdot \mathrm{"a}_{x:\actuarialangle{t}} - t \cdot \alpha^Z}}
\end{equation}

渲染输出:

在此处输入图片描述

来源

相关内容