Latex Math Symbol: Vitanyi puts a tiny plus symbol over his equals. How do I do that?

27,765

Solution 1

Try $\stackrel{top}{bottom}$

You'd want something like this:

$X \stackrel{+}{=} Y$

This positions the plus sign above the equals sign. For example, the following code:

$K(x,y|z) \stackrel{+}{=} K(x|z) \stackrel{+}{<} I(x:y|z)$

produces the following output:

Equation including + sign over = sign

Solution 2

The Comprehensive LaTeX Symbol List (from here) is a great resource, and start for questions like this. You could also contact the author, it's possible he did some LaTex voodoo (math accents and such) to get it to work.

Best of luck.

PS: isn't \pm plus-minus, not plus-equals?

Solution 3

Here's the list of Latex Math Symbols. I don't see the two from the PDF you linked to. Do you know what they mean? You might be able to find an equivalent in the Latex list.

Share:
27,765
PlexLuthor
Author by

PlexLuthor

I do network and info theory research for a huge corporation. I like to fence, and this past summer I built a shed for fun.

Updated on July 28, 2022

Comments

  • PlexLuthor
    PlexLuthor almost 2 years

    For example, in http://homepages.cwi.nl/~paulv/papers/algorithmicstatistics.pdf at the bottom of page 5 and top of page 6, he uses a plus/equal symbol and a similar plus/lessthan symbol. I can't figure out how to make that symbol, and I'd like to quote him.

    Any help?

  • nlucaroni
    nlucaroni over 15 years
    yeah, \pm is plus minus... he could have done \bar{\pm} or something crazy, like you suggest.
  • kungfoo
    kungfoo about 14 years
    That's the only proper way to do it. Thanks!