如何让 Mathjax 与 Angular2 一起工作?

How to get Mathjax working with Angular2?

有没有人让 Mathjax 与 Angular2 一起工作?

创建了 Plunkr 示例:- http://plnkr.co/edit/FLduwmtHfkCN5XPfzMsA?p=preview

从一些 Angular1 示例中,我看到调用 MathJax.Hub.Queue 似乎需要一个指令,但我怀疑我需要很长时间才能获得 Angular 2语法正确,所以我想知道是否有人已经这样做了?

例如,下面是一个 Angular1 示例。 https://github.com/ColCarroll/ngMathJax/blob/master/ng-mathjax.js

mathjax 语法在这里 :- https://docs.mathjax.org/en/v1.1-latest/typeset.html

尝试在 Angular2 中做类似的事情。

更新 - 以下作品,感谢 Thierry。

分量:-

import {Component, OnInit} from 'angular2/core';
import {MathJaxDirective} from './mathjax.directive';

@Component({
  selector: 'hello-mathjax',
  templateUrl: 'app/hello_mathjax.html',
  directives: [MathJaxDirective]
})
export class HelloMathjax {
  fractionString: string = 'Inside Angular one half = $\frac 12$';
  index: number = 3;

    ngOnInit() {
        MathJax.Hub.Queue(["Typeset",MathJax.Hub,"MathJax"]);
    }

    update () {
      this.fractionString = 'Inside Angular one third = $\frac 1'+this.index+'$';
      this.index++;
    }

}

指令:-

import {Directive, ElementRef, Input} from 'angular2/core';
@Directive({
    selector: '[MathJax]'
})
export class MathJaxDirective {
    @Input('MathJax') fractionString: string;

    constructor(private el: ElementRef) {
    }

    ngOnChanges() {
      console.log('>> ngOnChanges');
       this.el.nativeElement.style.backgroundColor = 'yellow';
       this.el.nativeElement.innerHTML = this.fractionString;
       MathJax.Hub.Queue(["Typeset",MathJax.Hub, this.el.nativeElement]);
    }
}

仍然不确定为什么我需要在两个地方排队重新渲染。

我将通过输入来实现这种方式以获得指定的表达式:

import {Directive, ElementRef, Input} from 'angular2/core';
@Directive({
    selector: '[MathJax]'
})
export class MathJaxDirective {
    @Input(' MathJax')
    texExpression:string;

    constructor(private el: ElementRef) {
    }

    ngOnChanges() {
       this.el.nativeElement.innerHTML = this.texExpression;
       MathJax.Hub.Queue(["Typeset", MathJax.Hub, this.el.nativeElement]);
    }
}

并这样使用:

<textarea #txt></textarea>
<span [MathJax]="txt.value"></span>

看到这个 plunkr:http://plnkr.co/edit/qBRAIxR27zK3bpo6QipY?p=preview

基于这个问题,我开始开发一个用Angular排版TeX数学表达式的开源项目。该项目在 https://github.com/garciparedes/ng-katex.

您可以安装模块:

npm install ng-katex --save

要将模块添加到您的项目,请将 KatexModule 添加到您父模块的 import 字段:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';

import { KatexModule } from 'ng-katex';

@NgModule({
  imports: [BrowserModule, KatexModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})

class AppModule {}

platformBrowserDynamic().bootstrapModule(AppModule);

然后你可以按如下方式使用它:

import { Component } from '@angular/core';

@Component({
  selector: 'my-app',
  template: `<ng-katex [equation]="equation">`
})
export class AppComponent {
  equation: string = ''\sum_{i=1}^nx_i'';
}

我在Angular2的项目中使用Mathjax如下:

setTimeout(function () { MathJax.Hub.Queue(["Typeset", MathJax.Hub]);}, 5);

由于队列异步运行,setTimeout 确保数学渲染过程在特定时间点后发生。

问题是 angular 2 的模板生成器寻找文件结尾字符“{”或在文件结尾 (EOF) 的 html 文件中发现意外内容。

为了能够将 MathJax 与 Angular 2 模板生成器一起使用:

<h1>example not working = $$ 2^{x + 2 } $$</h1>

<h1>example working = $$ 2^{{ '{' }} x + 2 {{ '}' }} $$</h1>

只需使用 {{ '{' }} 或 {{ '}' }} ,而不是 html 标签内的简单 '{'。

不要忘记将此添加到您的 index.html 标签中:

<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\(','\)']]}});