使用 Latex 命令验证 html 文件

发布于 2024-09-02 11:06:00 字数 231 浏览 6 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

无人问我粥可暖 2024-09-09 11:06:01

将您的 LaTex 代码放入 CDATA 块中:

<![CDATA[
\begin{equation}(x^{2})^{4+(frac{1}{5})}\end{equation}
]]>

Put your LaTex code into a CDATA block:

<![CDATA[
\begin{equation}(x^{2})^{4+(frac{1}{5})}\end{equation}
]]>
涫野音 2024-09-09 11:06:00

非 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.

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