[Tex/LaTex] “Double subscript” error in “align” environment

alignsubscripts

I saw some questions about "double subscript" but I have a weird situation. I have the following parts in my code:

line 44-48

and…

line 56-59

I have used almost the same subscripts in both of them, but the latter one gives a "double subscript" error while the first one works fine. What am I missing there? What is the reason for that error?

Here is my error bar:

error bar

Best Answer

The error is caused by the improper double subscript h_{j)}_0 (of type a_b_c). Add brackets to help latex discriminate between a_{b_c} or {a_b}_c.

enter image description here

Note that is similar to the ambiguity in maths: is 2^3^4 supposed to mean 8^4 or 2^81?

Related Question