a<b 未被 html 识别
a<b is not identified by html
这是我在 html 文件中的代码:
<li>For any [=11=] \leq s < t$, the random variable $B_t - B_s$ is normally distributed with mean 0 and variance $t-s$, i.e., for any $a<b$, </li>
It's supposed to appear a<b in the end.
但是,当我打开Chrome中的html时,发现a后面的部分不见了。可能 Chrome 将 <b
识别为网站中的一个节点。有什么想法可以解决这个问题吗?
HTML中的<
代表一个标签。如果您想确保出现小于或大于符号,您应该使用实体。
示例:
使用<
代替<
使用>
代替>
<
字符在HTML中保留为起始标签,因此后面的内容被解释为标签;和之前一样,您可以改用 $\leq$
。
这是我在 html 文件中的代码:
<li>For any [=11=] \leq s < t$, the random variable $B_t - B_s$ is normally distributed with mean 0 and variance $t-s$, i.e., for any $a<b$, </li>
It's supposed to appear a<b in the end.
但是,当我打开Chrome中的html时,发现a后面的部分不见了。可能 Chrome 将 <b
识别为网站中的一个节点。有什么想法可以解决这个问题吗?
<
代表一个标签。如果您想确保出现小于或大于符号,您应该使用实体。
示例:
使用<
代替<
使用>
代替>
<
字符在HTML中保留为起始标签,因此后面的内容被解释为标签;和之前一样,您可以改用 $\leq$
。