答案 0 :(得分:1)
您要复制的文本包含 katex ,Typora不支持。因此,您应该使用Latex语法来呈现数学表达式。
在排印中,您可以按$$和回车键以输入math block。但就您而言,您需要内联数学。按command/ctrl + ,
并确保已选中在线数学。
要使用内联数学,请将内容放在$之间。例如$f(x)=x_{1}^{2}+x_{2}^{2}$
的结果
如果您在Typora中写以下内容
To explain, lets assume that $\text{rev}$ is positive.
1. If $temp=rev\cdot10+pop$ causes overflow, then it must be that $rev\geq\frac{INTMAX}{10}$
2. If $rev>\frac{INTMAX}{10}$, then $temp=rev\cdot10+pop$ is guaranteed to overflow.
3. If $rev==\frac{INTMAX}{10}$, then $temp=rev\cdot10+pop$ will overflow if and only if $pop>7$
Similar logic can be applied when $\text{rev}$ is negative.
看起来像
此处\cdot
个结果乘法点(⋅),\geq
个结果≥和\frac{}{}
个结果分数。