Bonjour,
j'essaye de comprendre le fonctionnement de mathml mais dur, dur .;
J'ai parcouru le cours W3C concernant mathml mais le coe suivant ne fonctionne pas malgré l'installation de l'activeX spécial IE !
Pourquoi l'écran ne me présente-t-il pas une belle petite équation ?Code:
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 <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> ... <math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <msup> <mfenced> <mrow> <mi>a</mi> <mo>+</mo> <mi>b</mi> </mrow> </mfenced> <mn>2</mn> </msup> </mrow> </math> ... </html>