MathML 标记无法在 JavaFX WebView 中正确呈现

MathML tags don't render properly in JavaFX WebView

MathML 标记无法在 JavaFX WebView 中正确呈现

JDK 版本:1.8.0_192

例如,

<math xmlns="http://www.w3.org/1998/Math/MathML"> 
   <msub> 
    <mi>
      S 
    </mi> 
    <mi>
      n 
    </mi> 
   </msub> 
   <mo>
     &lt; 
   </mo> 
   <mstyle displaystyle="true" scriptlevel="0"> 
    <mfrac> 
     <mi>
       π 
     </mi> 
     <mrow> 
      <mn>
        3 
      </mn>     
      <msqrt> 
       <mn>
         3 
       </mn> 
      </msqrt> 
     </mrow> 
    </mfrac> 
   </mstyle> 
 </math>

以上代码呈现为:

在 Google Chrome 中呈现为:

在 JavaFX WebView 中。

如何解决这个问题?

我电脑上的结果是你发布的代码? ?

首先,请确保您至少使用 Java/JavaFX 8 192 build 04 或 JavaFX 11(MathML 支持已损坏,在 Java/JavaFX 9 和 10 中不会在这些版本中修复版本)。

其次,验证您的字体列表。可能是您计算机上的字体配置问题?

必须至少安装以下字体之一(按优先顺序):

  • Latin Modern Math

  • STIX Two Math

  • XITS Math
  • STIX Math
  • Libertinus Math
  • TeX Gyre Termes Math

  • TeX Gyre Bonum Math

  • TeX Gyre Schola

  • DejaVu Math TeX Gyre

  • TeX Gyre Pagella Math

  • Asana Math

  • Cambria Math

  • Lucida Bright Math
  • Minion Math

  • Times New Roman

我的电脑上也是这个结果,但是 Latin Modern Math 字体安装后:

代码示例:您使用过这样的代码吗?

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebView;
import javafx.stage.Stage;

public class NavigateurTest extends Application {

    final StackPane root = new StackPane();
    final WebView webView =  new WebView();
    String ContentWhosebug = ""
            + "<math xmlns=\"http://www.w3.org/1998/Math/MathML\">"
            + "   <msub>"
            + "      <mi>S</mi>"
            + "      <mi>n</mi>"
            + "   </msub>"
            + "   <mo>&lt;</mo>"
            + "   <mstyle displaystyle=\"true\" scriptlevel=\"0\">"
            + "      <mfrac>"
            + "         <mi>π</mi>"
            + "         <mrow>"
            + "            <mn>3</mn>"
            + "            <msqrt>"
            + "               <mn>3</mn>"
            + "            </msqrt>"
            + "         </mrow>"
            + "      </mfrac>"
            + "   </mstyle>"
            + "</math>";

    public void init() {    
        root.getChildren().add(webView);
    }

    @Override
    public void start(Stage primaryStage) {

        //webView.getEngine().load("https://www.qwant.com");
        webView.getEngine().loadContent(ContentWhosebug);

        primaryStage.setTitle("OpenJFX MathML Rendering WebBrowser Test");
        primaryStage.setScene(new Scene(root));
        primaryStage.show();

    }

}