使用 Latex 命令验证 html 文件
我在 html 代码中使用 Latex 命令。当我验证 at w3c 验证器时,它给了我 inavlid 标记消息。
Line 105, Column 31: non SGML character number 12
\begin{equation}(x^{2})^{4+(frac{1}{5})}\end{equation}
有没有办法通过验证?我可以忽略这个错误吗?
I'm using latex commands in my html code. When I validate the at w3c validator, it is giving me inavlid markup message.
Line 105, Column 31: non SGML character number 12
\begin{equation}(x^{2})^{4+(frac{1}{5})}\end{equation}
Is there a way to pass validation? Can I ignore this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的 LaTex 代码放入 CDATA 块中:
Put your LaTex code into a CDATA block:
非 SGML 字符编号 12
表示您的 html 源代码中有一个控制字符。这很可能是一个错误。尝试找出这个字符并将其删除。或者,重新键入导致问题的行。non SGML character number 12
means that you have a control character in your html source. This is likely to be a mistake. Try to spot this character and delete it. Alternatively, retype the line that is causing you the problem.