XML 中的 SUP/SUB 标签
我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
XML 标准中没有任何内容排除
SUP
或SUB
元素。然而,它们在 XML 中也没有任何特定含义。
如果您希望它们显示为超级脚本和子脚本,则不会发生这种情况。
There is nothing in the XML standard that precludes
SUP
orSUB
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.
您可以在 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.
此 XML:
引用了 DTD,其中未定义元素
sub
。此 DTD 位于 http://www.apple.com/DTDs/PropertyList-1.0.dtd我认为您可以在 XML 解析器中省略 DTD 验证。
This XML:
has reference to DTD in which element
sub
is not defined. This DTD is located http://www.apple.com/DTDs/PropertyList-1.0.dtdI think you can omit DTD validation in your XML parser.
您可以将文本包装在 CDATA 标记中,如下所示:
XML 解析器不会尝试解析其中的内容,而是将其解释为文字,这将解决您的问题。
You can wrap your text in a CDATA tag, like so:
The XML parser will not try to parse the content inside, but interpret it as a literal, which will solve your problem.