Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to put a symbol above (on the head of) another? For example, I wanna produce something like this in one line.

a
#

i.e., 'a' above '#'.

EDIT:

The effect should be almost the same with $#^a# except that 'a' is on the top instead of top right of '#'.

share|improve this question
Do you want them both to be the same size? And how should they appear in relation to the surrounding text? Should the # be in line with the text, or should the midpoint between a and # be in line with it? – Artelius Jun 23 '10 at 3:12
Thanks for the quick reply Artelius. About their size, the above one is smaller would be preferred. The effect should be the same as $#^a$ except that 'a' is on the top of '#' other than on the top right of '#'. – plmday Jun 23 '10 at 3:26
1  
Don't put "solved" in the title. It isn't required in order to tell that the question has been answered. – Ignacio Vazquez-Abrams Jun 23 '10 at 3:51
Ah, thanks for the reminder. Gonna read the FAQ. – plmday Jun 23 '10 at 4:04

closed as off topic by George Stocker Mar 4 at 19:20

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 12 down vote accepted

Use \overset{above}{main} in math mode. In your case, \overset{a}{\#}.

share|improve this answer
That's it. You are fantastic. I searched everywhere but don't found such a thing. Thank you very much. – plmday Jun 23 '10 at 3:46
Please select my answer as the correct one, then :) - Also, a good LaTeX editor like LEd or LyX makes it much easier to find things like this. – Artelius Jun 23 '10 at 3:50
I use kile in fact, but did not find it on its list. – plmday Jun 23 '10 at 4:03

If you're using # as an operator, consider defining a new operator for it:

\newcommand{\pound}{\operatornamewithlimits{\#}}

You can then write things like \pound_{n = 1}^N and get:

alt text

share|improve this answer
Thanks for the input, Geoff, I've kept a note for future use. – plmday Jun 26 '10 at 6:56
Awesome ! Thanks for share this tip. – Leandro Jun 22 '11 at 5:55
${a \atop \#}$

or

${a \above 0pt \#}$
share|improve this answer
Alexey, LaTeX complains the two commands are foreign. Also, the two symbols are put equal size which is not what I wanted. Artelius's answer matches my needs perfectly. Anyway, thank you all the same. – plmday Jun 26 '10 at 6:58

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