Dear Stata users,

I have a variable with both superscript and subscript. When I wrote both superscripts and subscript for that variable as in the following code, the K is far too apart from the variable 'P'. I'm wondering how to align both the superscript and subscript of 'P' variable so that it looks similar to what I have in the text?

Code:
twoway (tsline MA in `i'/`j') (tsline l in `i'/`j'),  tlabel(1970m01(60)2014m12, format(%tmcY))  ytitle("Smoothed {it:P{subscript:TW}{superscript:K}}")  name(MA, replace)
Any help is much appreciated!