发布于 2019-03-31 18:18:06
要复制的文本包含katex,泰波拉不支持它。因此,您应该使用Latex语法来呈现数学表达式。
在typora中,您只需按$$并返回键输入数学块。但在你的情况下,你需要内联的数学。按command/ctrl + ,并确保检查内联数学。

要使用内联数学,请将内容放在$之间。例如,$f(x)=x_{1}^{2}+x_{2}^{2}$结果

如果你用泰波拉写的话
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{}{}结果分数。
查看所有的乳胶数学符号和点字符之间的差异。
https://stackoverflow.com/questions/55399071
复制相似问题