XML 中的 SUP/SUB 标签

发布于 2024-11-25 18:42:15 字数 129 浏览 2 评论 0原文

我可以在 XML 文件中使用上标和下标标签吗?

我尝试复制粘贴,使用 标签,但它给出了错误。我也搜索了很多,但无法得到正确的解决方案。

有人可以建议我解决方案吗?

Can i use Superscript and Subscript tags in XML file?

I tried copy pasting,using <SUP> tags but it is giving error .I have also searched a lot,but could not get proper solution.

Could anyone please suggest me solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

爱本泡沫多脆弱 2024-12-02 18:42:15

XML 标准中没有任何内容排除 SUPSUB 元素。

然而,它们在 XML 中也没有任何特定含义。

如果您希望它们显示为超级脚本和子脚本,则不会发生这种情况。

There is nothing in the XML standard that precludes SUP or SUB elements.

However, they don't have any specific meaning in XML either.

If you expect them to show up as super and sub scripts, this will not happen.

迷爱 2024-12-02 18:42:15

您可以在 XML 中使用您喜欢的任何标签,这就是它的全部意义。

请不要在没有告诉我们错误是什么的情况下使用“我尝试过但它给了我一个错误”这样的短语。我们希望为您提供帮助,但在没有看到错误消息的情况下,我们无法为您解释错误。这就像告诉你的医生你感觉不舒服,却没有告诉他症状。

You can use any tags you like in XML, that's the whole point of it.

Please never use the phrase "I tried it and it gave me an error" without telling us what the error was. We like to be helpful but we can't explain an error for you without seeing the error message. It's like telling your doctor you don't feel well without telling him the symptoms.

岁月染过的梦 2024-12-02 18:42:15

此 XML:

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <array>
        <dict>
            <key>name</key>
            <string>title</string>

            <key>subchapters</key>
            <string>name</string>
        </dict>
    </array>
</plist>

引用了 DTD,其中未定义元素 sub。此 DTD 位于 http://www.apple.com/DTDs/PropertyList-1.0.dtd

我认为您可以在 XML 解析器中省略 DTD 验证。

This XML:

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <array>
        <dict>
            <key>name</key>
            <string>title</string>

            <key>subchapters</key>
            <string>name</string>
        </dict>
    </array>
</plist>

has reference to DTD in which element sub is not defined. This DTD is located http://www.apple.com/DTDs/PropertyList-1.0.dtd

I think you can omit DTD validation in your XML parser.

远山浅 2024-12-02 18:42:15

您可以将文本包装在 CDATA 标记中,如下所示:

<![CDATA[ <string>haii</string> ]]>

XML 解析器不会尝试解析其中的内容,而是将其解释为文字,这将解决您的问题。

You can wrap your text in a CDATA tag, like so:

<![CDATA[ <string>haii</string> ]]>

The XML parser will not try to parse the content inside, but interpret it as a literal, which will solve your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文