File size: 1,052 Bytes
967ec2e
9fe8a1d
c155fff
9fe8a1d
 
 
 
86fa516
c155fff
 
9fe8a1d
 
 
 
57821ec
 
9fe8a1d
 
 
 
 
 
57821ec
c155fff
57821ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Éditeur LaTeX avec MathJax</title>
    <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
    <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
    <h2>Entrez votre LaTeX ci-dessous</h2>
    <input type="text" id="latex-input" placeholder="Entrez votre LaTeX ici" size="50">
    <button onclick="renderLatex()">Afficher</button>
    <div id="output" style="margin-top: 20px; border: 1px solid #ccc; padding: 10px;"></div>

    <script>
    function renderLatex() {
        var input = document.getElementById('latex-input').value;
        var output = document.getElementById('output');
        output.innerHTML = `\\(${input}\\)`; // Utilisez des backticks pour le template string
        MathJax.typesetPromise(); // Demande à MathJax de rafraîchir le rendu
    }
    </script>
</body>
</html>