Questions tagged [jqmath]

jqMath is a JavaScript module that makes it easy to put formatted mathematical expressions in web pages

jqMath uses a simple TeX-like syntax, with MathML semantics:

  • $, or ( and ), to delimit inline mathematics
  • $$, or [ and ], to delimit block or “display” mathematics
  • ^ for superscript
  • _ for subscript
  • { and } for grouping
  • ↖ for overscript
  • ↙ for underscript
  • \ or ` to quote the next character (turning off its special meaning), start a macro or multi-letter name, or make a name non-italic
  • \bo, \it, or \bi for a bold, italic, or bold-italic variable
  • \sc or \fr for a script or Fraktur letter
  • \ov for an overbar
  • \table for a matrix, table, or simply tabular alignment - separate entries with , and rows with ;
  • \text or \html for plain text or html inside mathematics - specify the text or html inside quotes spaces, tabs and newlines are ignored

jqMath is lightweight and standards-based. Thus pages containing jqMath code load quickly, and expressions can be resized by the user, or easily passed to screen reading, graphing, or computer algebra software.

Useful Links

56 questions
0
votes
1 answer

how to make a svg from jqmath formatted text?

I discovered jqmath library that works very well. but now I have a problem: if I have a formatted text like:
user6110729
  • 138
  • 1
  • 8
0
votes
1 answer

jqmath can not render matrix?

I want to write table(matrix) with jqmath but the output is not correct . I copy jqmath example . there is my code : webView = (WebView) findViewById(R.id.wv); WebSettings settings =…
Kapta
  • 1,525
  • 14
  • 24
0
votes
2 answers

Correct. escape sequence for over bar?

I am using a string as my source for an equation, and whenever I try to add something like an overbar tag which is: \ov5\ - creates a bar over the 5 However, when I add this into a Java string, for it to compile I am required to write it like…
daedsidog
  • 1,732
  • 2
  • 17
  • 36
0
votes
1 answer

OnPageFinished() gets called too early for WebView

I have a webview element containing a jqmath script that I load from an external script in android studio, the function to pass variables into the script looks like this: void UpdateFunc() { js = "" + "
daedsidog
  • 1,732
  • 2
  • 17
  • 36
0
votes
1 answer

Scaling an Android WebView text html to fit?

I have a math equation as a text WebView that I need to fit the entire screen no matter its dimensions.. my first intuition of doing this is simply shrinking the text whenever it gets out of bounds so that it remains constrained, however, I can't…
daedsidog
  • 1,732
  • 2
  • 17
  • 36
0
votes
1 answer

How do I install JqMath on Android?

I am trying to display some math equations in my Android application, but I am unsure how you use JqMath to display these equations. Could someone tell me step by step what to do to get some simple equations displayed on the Android Application? I…
0
votes
2 answers

Convert HTML text area value to jqmath formula

I am new to jqmath; I have contained a textarea field in my HTML: I will set mathematical formula in the text area so that it will be displayed in
tag:
This…
Kavin
  • 183
  • 3
  • 13
0
votes
1 answer

Is it possible to use jqMath in Windows and Iphone mobile app?

I am developing a website which will have some math equations and hence, to render them I am planning to use jqMath. Now, before delving into coding I would like to plan in advance, so that it doesn't turn into a nightmare at the end, and want to…
Naveen
  • 7,944
  • 12
  • 78
  • 165
0
votes
1 answer

create an input using parseMath() in jqmath

I’ve to create a custom text field which is support some of the mathematical expression also. So I thought of using JQMath. I’ve to pass a expression with html input field using javascript. It’ll be added dynamically. So I put the expression in a…
flashyhawk
  • 11
  • 1
0
votes
1 answer

jQMath - Elementary math Sum line equivalent in MathML

I know that general lower math is not supported in jqMath, and so I’ve created a small work around using css and jQuery which adds a border to the bottom of a table cell. This works fine in Chrome, IE and Safari which use fmath (fake math) to…
0
votes
1 answer

Is it possible to style jqmath - display with another font, on webpages

I previously used mathjax to generate math on a website. It was not possible for me to style mathjax, which made the design awful (website had one font, and mathjax came with another font (stix). Is JQ Math a good alternative?, and it is possible to…
1 2 3
4