How to display the below symbol in Jqmath

134 views Asked by At

enter image description here

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

2

There are 2 answers

2
Dave Barton On

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.)

0
Kiran On

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.