0

In jqmath integration symbol is very small. How to make it larger.

∫ dx = x + C

ammy
  • 11
  • 1
  • 4

1 Answers1

0

What browser and operating system are you using? This depends on those, and your installed fonts. For me (Chrome on an iMac) jqMath produces: jqMath output. In Chrome if I right-click on the output integral sign and choose Inspect, I see it's

<mo class="fm-large-op fm-prefix">∫</mo>

and the rule in line 70 of jqmath-0.4.3.css gives:

.fm-large-op {
    font-size: 1.3em;
}

which makes the symbol large.

Dave Barton
  • 1,429
  • 13
  • 12
  • Thank you Dave.... It is working. I am using chrome. Could you please tell me how to make space between two expression in jqmath. – ammy Aug 14 '17 at 23:16
  • I got the answer here for making space between two expressions. Thank you once again....https://stackoverflow.com/questions/7601222/how-to-keep-spaces-in-the-formatted-expression-in-jqmath – ammy Aug 15 '17 at 09:17