up vote 2 down vote favorite
share [g+] share [fb]

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.

link|improve this question

2  
I wish SO had latex rendering... :( – nlucaroni Sep 18 '08 at 3:10
feedback

3 Answers

up vote 2 down vote accepted

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.

link|improve this answer
feedback

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}}$
link|improve this answer
feedback

\annu
A good list of latex symbols can be found here http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf

link|improve this answer
That document shows you how to define the \annu macro, not that it is a common macro – Joseph Holsten Sep 18 '08 at 4:04
Ooops... Sorry. I should have looked more carefully. – Dima Sep 22 '08 at 2:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.