I tried something like this ${TXU}↖{⏜}$ but the arc is coming size of one letter
Asked
Active
Viewed 128 times
2 Answers
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
-
Thank you for your reply, is MathJax also supports same syntax as jqMath? because all my thousands of formulas are in jqMath :-( – Kiran Mar 08 '18 at 15:35
-
No, I don't think MathJax support jqMath syntax yet. – Dave Barton Mar 09 '18 at 20:20