{superscripts} are smaller characters appearing set slightly above the normal line.
6
votes
1answer
1k views
Trick LaTeX into doing double superscripts
I have a function in my .sty sheet that does a second partial derivative:
\newcommand{\hpartdsq}[2]{\dfrac{\partial^2 #1}{\partial #2 ^2}}
But I'd like to pass it something that already has a ...
72
votes
5answers
10k views
What's the quickest way to write “2nd” “3rd” etc in LaTeX?
If I want to use abbreviations for second, third and so on in my LaTeX documents, I am currently doing this: 2$^{nd}$ which seems unsatisfactory. Is there a macro I'm missing? I'm sure I could define ...
2
votes
2answers
758 views
How to show tilde in superscript
I would like to show a tilde in the superscript of a letter. For example
F^{\tilde{}}
But it does not look good. Any suggestions?
Thanks and regards!
3
votes
2answers
199 views
Can super/sub-scripts bind more tightly than macro expansion?
By "bind more tightly" I refer to the order in which operations are carried out by default.
Experimenting shows that if \ab is ab and \cd is cd then \ab^\cd is ab^cd. I would like it to be ...
12
votes
1answer
215 views
Is there a way to stop the vertical spread of multiple super- and sub-scripts?
I'd like to be able to place multiple sub and superscripts (in maths mode) on an element without having them expand vertically. That is, so that in the output of ${x^2_4}^6_8$, the 2 and 6 were ...