1,833 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
82
views
Markdown escape
I tried to display original code: $\sim$ in my jupyter notebook.
I thought that $ can be eacaped in the beginning time, so I used \$\sim\,ドル it displayed ~ later.
Then I tried \\$\sim,ドル it displayed $\...
0
votes
0
answers
23
views
How to do localisation in MathJax 4
I would like to change the menu language und speech language to german. The most obvious configuration
window.MathJax = {
locale: 'de'
};
does not work and there seems to be no information about it ...
0
votes
1
answer
106
views
Problem using flex container with mathjax inline math
I am using the solution given in How to reduce vertical space between items inside flex container? which worked well.
But when I added mathjax related item, now alignment is broken for some reason.
I ...
1
vote
3
answers
256
views
How to render MathJax inside of an SVG
I have a website which includes svg-images which themselves include mathematical formulas that should be rendered using MathJax. As far as I know, this isn't supported natively (i.e., by just putting ...
0
votes
1
answer
54
views
Why does this "startup" configuration, while allowing for auto-sizeable double brackets, renders \coloneq (and similar commands) literally, as text?
This is a MathJax question.
In this answer, Davide Cervone provides a solution to make dobule brackets auto-sizeable (when used with \left and \right), but as a result, \coloneq becomes a text rather ...
0
votes
1
answer
157
views
using extensions from CTAN in Quarto with Mathjax (html output)
I'm trying to use the statmath CTAN package (https://ctan.org/pkg/statmath?lang=en) in Quarto (following https://github.com/quarto-dev/quarto-cli/discussions/1620#discussioncomment-3296389); here's a ...
1
vote
1
answer
69
views
Defining a Sphinx MathJax macro with arguments throws error "MathJax: Invalid option"
I'm running Sphinx 4.5.0 in Python 3.10 and trying to write a MathJax macro that takes parameters. I've found examples that show how to do this (example 1 mathjax3_config)
, but when I copy them to ...
0
votes
1
answer
46
views
MathJax \color declaration spills over and colors subsequent text
I tried \color and \textcolor in a markdown file and then in an html file. Only the latter scopes the color to its argument. With \color, the rest of the expression stays red.
<script src="https://...
0
votes
1
answer
59
views
How do I detect which part of a rendered MathJax formula is clicked on?
I'd like to be able to enter metadata into my input LaTeX code so that when a user clicks a rendered MathJax formula, I can get a click event that indicates which part of the formula was clicked on.
...
1
vote
1
answer
86
views
MathJax automatic line break is not working
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MathJax Line Breaking</title>
<!-- MathJax configuration -->
...
0
votes
0
answers
186
views
How to export LaTeX math from MathJax to editable Word (OMML) using Pandoc?
I'm working on a Laravel application where users create math questions using LaTeX syntax, typically written between dollar signs like this:
Inline math: $E = mc^2$
Display math: $$\int_0^\infty e^{-x^...
2
votes
0
answers
102
views
Custom Macros for Writing Markdown in VS Code
TL;DR: I want to write (basic) custom macros that VS Code can render in markdown files
I use VS Code with the Markdown Preview Enchanced extension to write mathematical documents in Markdown. I often ...
0
votes
2
answers
55
views
MathJax embed code in Blogger Theme is automatically encoded
I inserted latex code into blogger Theme, immediately after saving it was automatically encoded. As a result, the math formula was broken when displayed.
Original code:
<b:if cond='data:blog....
0
votes
0
answers
29
views
Cannot add a MathJax generated texture in Canvas using PIXI
Inside a module script in an HTML page, I have the following:
import * as PIXI from 'pixi.js';
import { gsap } from 'gsap';
import { mathjax } from 'mathjax-full/js/mathjax.js';
import { TeX } from '...
1
vote
0
answers
53
views
MathJax not rendering equations in WordPress AJAX-loaded content (renders only after manual typesetPromise())
I’m building a custom WordPress plugin that loads math-based questions and answers using AJAX. These questions contain LaTeX-style MathJax expressions (e.g., $$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$$)...