mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
26 lines
No EOL
587 B
CoffeeScript
26 lines
No EOL
587 B
CoffeeScript
define [
|
|
"base"
|
|
"mathjax"
|
|
], (App) ->
|
|
mathjaxConfig =
|
|
messageStyle: "none"
|
|
imageFont:null
|
|
"HTML-CSS": { availableFonts: ["TeX"] },
|
|
TeX:
|
|
equationNumbers: { autoNumber: "AMS" },
|
|
useLabelIDs: false
|
|
tex2jax:
|
|
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
|
|
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
|
|
processEscapes: true
|
|
skipStartupTypeset: true
|
|
|
|
MathJax?.Hub?.Config(mathjaxConfig);
|
|
|
|
App.directive "mathjax", () ->
|
|
return {
|
|
link: (scope, element, attrs) ->
|
|
setTimeout () ->
|
|
MathJax?.Hub?.Queue(["Typeset", MathJax?.Hub, element.get(0)])
|
|
, 0
|
|
} |