Help With Text Arrangement of ^

I have two axes I would like to label. The label with the ~ has behaved well. I cannot find a way to modify the ^ symbol to look similar. Here are my best attempts:

\Z30
\[0\F'Symbol' e\X0\F]0\y+20\Z20 ~\Y0\B1\M\Z24(\F'Symbol'w\F]0,T)
\Z30
\[0\F'Symbol' e\X0\F]0\y+10\Z20 ˆ\Y0\B1\M\Z24(\F'Symbol'w\F]0,T)


I would like to lower the ^, but I can't adjust the y+10 to y+"a number less than 10". Also, the 1 subscript appears too close to the epsilon, though the coding looks the same except for the ~ vs ^.
Well, in Igor 7 using Unicode, the e with carat above and e with tilde above are both easy to accomplish using Unicode combining characters: ê ẽ. In Igor, you would type e then select from Special Character -> Enter Character and then enter the carat as UTF-16 0x0302 and the tilde as UTF-16 0x0303. To produce the entire text that you seem to be trying to produce, I used \Z30\[0ê\B1\M\Z]0(w,T)

John Weeks
WaveMetrics, Inc.
support@wavemetrics.com
Quote:
but I can't adjust the y+10 to y+"a number less than 10"


You can use 09 for 9 or 08 for 8.
hrodstein wrote:
Quote:
but I can't adjust the y+10 to y+"a number less than 10"


You can use 09 for 9 or 08 for 8.



This is helpful, thank you.