Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Annuity or Angle Operation Symbol in LaTeX

How do I set the symbol for the angle or annuity operation in LaTeX? Specifically, this is the actuarial a angle s = (1-vs)/i.

like image 730
Joseph Holsten Avatar asked Sep 18 '08 02:09

Joseph Holsten


People also ask

What is D in actuarial notation?

" (4) Compound symbols. The use of D in a compound symbol to indicate decreasing benefits has been introduced. adopted unanimously by the Second International Actuarial Congress held in London in May I898 and printed on pp.

What is LaTeX What are the symbols and features of LaTeX?

LaTeX allows you to write a wide variety of symbols, including Greek letters, arrows, operators, and relational symbols. See the following table to learn the LaTeX commands for a selection of characters that can be found in the Pressbooks special character bank.


2 Answers

For a very comprehensive list of LaTeX symbols, see The Comprehensive LaTeX Symbol List. Worth printing out and keeping under your pillow. Page 95 has some code that may do what you want.

like image 21
Thomas Avatar answered Sep 18 '22 18:09

Thomas


I've looked at Life's Contingency's Package, various Actuarial Outpost forum threads, and the Comprehensive Symbol List for LaTeX, and combined the best into the following macros:

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

You can then use this macro for the problem's example by typing

 $a\angle{s}$

If you need a full set of actuarial symbols, you should use the Life's Contingency's Package lifecon. Using lifecon, you can set the above by typing

 $a_{\lcroof{s}}$
like image 142
Joseph Holsten Avatar answered Sep 16 '22 18:09

Joseph Holsten