mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
43 lines
1.1 KiB
JavaScript
43 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
|
||
|
}
|