mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
40a1c302f9
[web] de-ng learn wiki page GitOrigin-RevId: defb1c1c90fe17e843f36253e81c2455b7dddfb1
42 lines
1.1 KiB
JavaScript
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
|
|
}
|