LaTeX中的年金或角度操作符号

时间:2008-09-18 02:30:01

标签: math latex symbols angle

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

5 个答案:

答案 0 :(得分:5)

我查看了Life's Contingency's Package,各种精算前哨forum threadsComprehensive Symbol List的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}}$

答案 1 :(得分:3)

有关非常全面的LaTeX符号列表,请参阅The Comprehensive LaTeX Symbol List。值得打印并保持在枕头下。第95页有一些代码可以做你想要的。

答案 2 :(得分:1)

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

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

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

在代码的开头你必须写

StartNew

对于sub / superscript

\usepackage{actuarialsymbol}

输出示例:

enter image description here

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

答案 3 :(得分:1)

我一直在为我的一位教授做一些排版,事实证明我需要一些帮助来产生年金表示法的累积值。

我在tex堆栈交换here

上问了这个问题

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.

哪个产生: accumulated value of annuity

答案 4 :(得分:0)

\ annu
可以在http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf

找到一个很好的乳胶符号列表