overleaf/services/web/frontend/js/features/mathjax/configure.js
Jakob Ackermann 40a1c302f9 Merge pull request #5071 from overleaf/jpa-web-learn-de-ng
[web] de-ng learn wiki page

GitOrigin-RevId: defb1c1c90fe17e843f36253e81c2455b7dddfb1
2021-09-16 08:03:43 +00:00

42 lines
1.1 KiB
JavaScript

/* global MathJax */
import { mathJaxLoaded } from './util'
let configured = false
export function configureMathJax() {
if (configured) return
if (!mathJaxLoaded()) return
MathJax.Hub.Config({
messageStyle: 'none',
imageFont: null,
// Fast preview, introduced in 2.5, is unhelpful due to extra codemirror refresh
// and disabling it avoids issues with math processing errors
// github.com/overleaf/write_latex/pull/1375
'fast-preview': { disabled: true },
'HTML-CSS': {
availableFonts: ['TeX'],
// MathJax's automatic font scaling does not work well when we render math
// that isn't yet on the page, so we disable it and set a global font
// scale factor
scale: 110,
matchFontHeight: false,
},
TeX: {
equationNumbers: { autoNumber: 'AMS' },
useLabelIDs: false,
},
skipStartupTypeset: true,
tex2jax: {
processEscapes: true,
// Dollar delimiters are added by the mathjax directive
inlineMath: [['\\(', '\\)']],
displayMath: [
['$$', '$$'],
['\\[', '\\]'],
],
},
})
configured = true
}