如何在另一个命名空间内声明和使用命名空间

时间:2017-10-24 01:41:36

标签: xml oxygenxml

这应该有效,但它说ml:数学不完整,ml:矩阵不允许,我该如何解决这个问题?我需要知道我是否可以在另一个中使用命名空间

<!-- il est possible d'utiliser l'espace de noms http -->
<http:html xmlns:http="http://www.w3.org/1999/xhtml">
<http:head>
    <http:title>Titre du document</http:title>
</http:head>
<http:body>
    <http:p>
        <!-- il est possible d'utiliser l'espace de noms ml -->
        <ml:math xmlns:ml="http://www.w3.org/1998/Math/MathML">
            <ml:matrix>
                <ml:matrixrow>
                    <ml:cn>0</ml:cn>
                    <ml:cn>1</ml:cn>
                    <ml:cn>0</ml:cn>
                </ml:matrixrow>
                <ml:matrixrow>
                    <ml:cn>0</ml:cn>
                    <ml:cn>0</ml:cn>
                    <ml:cn>1</ml:cn>
                </ml:matrixrow>
            </ml:matrix>
        </ml:math>
        <!-- il n'est plus possible d'utiliser l'espace de noms ml -->
    </http:p>
</http:body>
</http:html>
<!-- il n'est plus possible d'utiliser l'espace de noms http -->

0 个答案:

没有答案