Latex in Html-Datei mit MathJax einbinden
-
Hallo!
Ich habe eine Html-Datei mit dem unten stehenden Code erstellt und lokal auf der Festplatte gespeichert. Wenn ich die Datei mit einem Browser öffne, wird aber nur Text pur angezeigt. Also das hier:
When a \\ne 0, there are two solutions to \(ax^2 + bx + c = 0\) and they are $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$Was mache ich falsch?
Das Beispiel ist das dritte Code-Beispiel von hier http://docs.mathjax.org/en/latest/start.html#tex-and-latex-input
<!DOCTYPE html>
x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}.
<html>
<head>
<title>MathJax TeX Test Page</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [[''], ['\(','\)']]}});
</script>
<script type="text/javascript" async
src="https://example.com/MathJax.js?config=TeX-AMS_CHTML">
</script>
</head>
<body>
When a \\ne 0, there are two solutions to \(ax^2 + bx + c = 0\) and they are</body>
</html>Grüße