如何设置符号 角度 或者 年金 在LaTeX中操作?具体来说,这是精算 A 角度 s = (1-vs)/我。

有帮助吗?

解决方案

为一个 非常 LaTeX 符号的完整列表,请参见 综合 LaTeX 符号列表. 。值得打印出来并放在枕头下。第 95 页有一些代码可以满足您的要求。

其他提示

我看过 生命意外险套餐, 、各种精算前哨站 论坛 线程, ,以及 综合符号列表 对于 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}$

如果您需要全套精算符号,您应该使用 生命意外险套餐 lifecon. 。使用 lifecon, ,您可以通过输入来设置以上内容

 $a_{\lcroof{s}}$

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

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

结果是 海科·奥伯迪克 产生的是

\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.

其产生:年金累计值

我对下标和上标也有同样的问题,所以我制作了一个包,让我和其他人的生活更轻松。这是精算符号的常见问题,它有助于对齐下标和上标。另外,我添加了一些快捷方式来节省时间。GitHub:https://vigou3.github.io/actuarialsymbol/

还有 CTAN:http://ctan.org/pkg/actuarialsymbol

您所需要的只是 Actuarialsymbol 包。

在代码的开头你必须写

\usepackage{actuarialsymbol}

对于下标/上标

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

输出示例:

enter image description here

精算符号的快捷方式示例:enter image description here

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top