简体   繁体   English

如何在Jqmath中显示以下符号

[英]How to display the below symbol in Jqmath

在此处输入图片说明

I tried something like this ${TXU}↖{⏜}$ but the arc is coming size of one letter 我尝试过类似$ {TXU}↖{⏜} $的操作,但是弧长即将达到一个字母的大小

Finally i am able to resolve by using \\html in jqMath and CSS to stretch. 最后,我能够通过在jqMath和CSS中使用\\ html来解决问题。

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

and the CSS is CSS是

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

Hope this helps some one. 希望这可以帮助一些人。

Sorry, jqMath doesn't do horizontal stretching yet. 抱歉,jqMath尚未进行水平拉伸。 For advanced formatting like this I suggest you try MathJax, at least for now. 对于这样的高级格式,建议您至少现在尝试使用MathJax。 (I am the jqMath author.) (我是jqMath的作者。)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM