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
43
votes
12 answers

What's the best way to write Mathematical Equations on the Web?

I am working on a Math related web page and am looking for a solution to writing Mathematical equations easily onto a web page. There are several solutions readily available to me at the moment: Use LaTeX and publish them on my web page as…
Mike B
  • 12,768
  • 20
  • 83
  • 109
33
votes
6 answers

Display Good-looking Math Formula in Android

It is sad to see that science and math is never given enough attention in Android platform. Maybe this is an easy problem, but I'm a total dude in javascript so I'm struggling to understand how to solve this problem. What I want to do is simple: I…
Neoh
  • 15,906
  • 14
  • 66
  • 78
28
votes
3 answers

Embeddable WYSIWYG equation editor

do you know of a WYSIWYG equation editor, like DragMath, implemented in javascript/mathml or Flash? I could embed DragMath as well, but I was wondering if there's a way to have a good WYSIWYG formula editor without requiring the users to run a Java…
pesho
  • 1,232
  • 2
  • 13
  • 11
18
votes
4 answers

How to practically display math formula in Android

I researched on this for quite a while and I know this kind of questions already answered. But I couldn't find a right answer showing how to practically deal with math formula in Android app. Without including large amount (5~20MB) of files in the…
Tae-Sung Shin
  • 20,215
  • 33
  • 138
  • 240
14
votes
3 answers

MathJax/jsMath alternatives?

Update from 2021: just use MathJax; you shouldn't be supporting old versions of IE any more. I want to use MathJax to display MathML equations, but its performance in IE is unacceptably slow (yes, I read about using EmulateIE7, this is also…
beerbajay
  • 19,652
  • 6
  • 58
  • 75
6
votes
2 answers

How to display mathematical symbols,physics,chemistry equations in android?

I am developing a trivia quiz app which may have maths,physics and chemistry symbols, since this a real time game app everytime questions will be downloaded from a server and shown for particular topic.It needs to be a native android app and…
Learner_Programmer
  • 1,259
  • 1
  • 13
  • 38
4
votes
1 answer

Is it possible to put HTML inside TeX/MathML with MathJax the way it can be done with jqMath?

Using jqMath you can use \html to insert html inside mathematical expressions, such as in \[y = ax^\html'<input type="text" size=1>'+bx+c\] This results in the following expression displayed to the user with a html input before the first…
3
votes
2 answers

Jqmath - apply after page load

I would like to apply the jqMath script after the initial page load. The problem I have is that I make an ajax call which retrieves some jqMath syntax and loads it into a div section of the main page. However the syntax is not currently being…
dky
  • 35
  • 4
3
votes
1 answer

jqMath highlight box like bbox in MathJax/MathJs

Does jqmath have support for adding custom containers inside of final render? Basically is there any equivalent to bbox in MathJax/MathJs http://www.mathjax.org/docs/2.0/tex.html#bbox?
Patrick Lorio
  • 5,520
  • 11
  • 45
  • 74
3
votes
1 answer

How to left align elements in a jqmath table

If I try to create a table in jqmath, it always centers the elements. So if I write $$\table a , b ; c , dddddddddddd ;$$ then I get a b c dddddddddddd How do I make jqmath align the columns to the left, so that the table is displayed…
Damascus Steel
  • 323
  • 1
  • 2
  • 13
2
votes
1 answer

how to make a strikethrough in jqmath in firefox

Chrome on Left, Firefox on Right We're using jqmath and would like to use the line-through text-decoration, as described here: How does one indicate strikethrough in jqmath? This works in Chrome, but is not working in Firefox. .deletedText { …
1
vote
2 answers

ASCII to MathML

I have a PHP-script that outputs: ((5^2x^2)^2+3)/(sqrt(sqrt(81))) I want it to be formatted properly like you would write it. Where can I find a ASCII to MathML converter like this: http://www.equationsheet.com/asciitomathml.php That is OpenSource…
Friend of Kim
  • 850
  • 9
  • 24
1
vote
4 answers

How to keep spaces in the formatted expression in jqMath

I am using jqMath for Math equation formatter. I don't want to remove spaces and newline character from the expression. How can I do that? I have tried a lot but I coudn't find any solution.
gsagrawal
  • 2,900
  • 4
  • 27
  • 27
1
vote
2 answers

Issue with MathML Rendering of matrix like formulas in Chrome for both on Mac and Android devices

I am using MathML rendering in my website using JQMath. Issue only on Mac OS and Android Devices - Not in Windows OS Until now all Mathml formulas are rendering Correclty but after recent update in webkit browsers the formulas are not rendering…
Kiran
  • 1,145
  • 1
  • 8
  • 22
1
vote
0 answers

Google Play Report error regarding JQMath file in android

ERROR REPORT ON GOOGLE PLAY CONSOLE Your app contains one or more libraries with known security issues. Please see this Google Help Center article for details. JavaScript jquery 1.4.3 SNYK-npm:jquery:20110606, SNYK-npm:jquery:20150627,…
1
2 3 4