Has anyone gotten Mathjax working with Angular2 ?
Plunkr example created :- http://plnkr.co/edit/FLduwmtHfkCN5XPfzMsA?p=preview
From some Angular1 example
Used Mathjax in my project in Angular 2 as follows:
setTimeout(function () { MathJax.Hub.Queue(["Typeset", MathJax.Hub]);}, 5);
as the queue runs asynchronously, the setTimeout ensures the math rendering process happens after a certain point of time.