5

如何在 LaTeX 中设置角度年金运算的符号?具体来说,这是精算as = (1-v s )/i。

4

5 回答 5

6

我查看了Life's Contingency's Package、各种精算前哨论坛 主题和 LaTeX 的综合符号列表,并将最好的组合到以下宏中:

\DeclareRobustCommand{\lcroof}[1]{
  \hbox{\vtop{\vbox{%
      \hrule\kern 1pt\hbox{%
        $\scriptstyle #1$%
        \kern 1pt}}\kern1pt}%
    \vrule\kern1pt}}
\DeclareRobustCommand{\angle}[1]{
  _{\lcroof{#1}}}

然后,您可以通过键入此宏来解决问题的示例

 $a\angle{s}$

如果您需要全套精算符号,您应该使用Life's Contingency's Package lifecon。使用lifecon,您可以通过键入

 $a_{\lcroof{s}}$
于 2008-09-18T03:52:54.280 回答
4

有关 LaTeX 符号的完整列表,请参阅综合 LaTeX 符号列表。值得打印出来并放在枕头下。第 95 页有一些代码可以做你想做的事。

于 2008-09-18T02:40:11.883 回答
4

我对精算符号和下标/上标有同样的问题,所以我做了一个包来让我的生活更轻松并帮助其他人。

另外,我添加了一些快捷方式来节省时间。

项目页面CTAN

您所需要的只是精算符号包。

在代码的开头你必须写

\usepackage{actuarialsymbol}

对于下标/上标

\actsymb['subscripLeft']['superscriptL']{<middle>}{'subscriptR'}{'superscriptR'}

输出示例:

在此处输入图像描述

在此处输入图像描述

精算符号的快捷方式示例: 在此处输入图像描述

于 2017-04-26T20:19:07.813 回答
2

我一直在为我的一位教授排版,结果我需要一些帮助来生成年金符号的累积值。

我在这里的 tex stack exchange 上问了这个问题

Heiko Oberdiek产生的结果是

\documentclass{article}
\usepackage{siunitx}

\makeatletter
\newcommand*{\NegationLike}[1]{%
  \mathop{%
    \mathpalette\@NegationLike{#1}%
  }%
  % A little space is added automatically,
  % if a math ord atom follows.
}
\newdimen\BarLineWidth
\newcommand*{\@NegationLike}[2]{%
  % #1: math style
  % #2: argument
  \vbox{%
    % The rule thickness of \overline or \underline
    % is available in the font dimen register 8
    % of the math family 3 of the current size.
    \BarLineWidth=%
      \the\fontdimen8%
      \ifx\displaystyle#1\textfont
      \else\ifx\textstyle#1\textfont
      \else\ifx\scriptstyle#1\scriptfont
      \else\scriptscriptfont
      \fi\fi\fi
      3\relax
    % The rule at the top
    \hrule height\BarLineWidth
    % Move the box with the vertical line
    % as height as the top of the upper line
    % to get a better corner.

其中产生: 年金累计值

于 2017-07-28T22:01:17.137 回答
0

\annu
可以在这里找到一个很好的乳胶符号列表http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf

于 2008-09-18T02:40:01.260 回答