1

enter image description here

I tried something like this ${TXU}↖{⏜}$ but the arc is coming size of one letter

Kiran
  • 1,145
  • 1
  • 8
  • 22

2 Answers2

2

Finally i am able to resolve by using \html in jqMath and CSS to stretch.

${TXU}↖{ \html "<span class='stretch'>⏜</span>"}$

and the CSS is

.stretch{
    transform: scale(3,1);
    -webkit-transform: scale(3,1);
    display: inline-block;
 }

Hope this helps some one.

Kiran
  • 1,145
  • 1
  • 8
  • 22
0

Sorry, jqMath doesn't do horizontal stretching yet. For advanced formatting like this I suggest you try MathJax, at least for now. (I am the jqMath author.)

Dave Barton
  • 1,429
  • 13
  • 12