I'm trying to format my chemical equations just right and I think I'm almost there.
The problem being that a normal subscript in just not low enough and the superscirpt following a chemical symbol that denotes charge needs to be slightly set to the right but not by a full space.
I wrote a simple macro to sub\sub\sub script my numbers to the correct place below the line.. it goes like this.
Code: Select all
%%%%%%%%%%%%
% new command for chemistry subscripts
\newcommand{\cu}[1]{_{_{_{\scriptsize #1}}}}
% useage eg: for H2 = H \cu{2}
%%%%%%%%%%%%
For example:
Code: Select all
\begin{align}
\mathrm{Hg\cu{2}HPO\cu{4} + 2~e} ~& \mathrm{\rightleftharpoons 2~Hg + HPO\cu{4}^{~2-} }
~& E : \SI{+0.6359}{V} \\
\end{align}
So my problem is that the superscript and the subsubsub script sizes are different but I cannot change their size using \scriptsize size command because they are inside the mathmode.
Any help greatly recieved.