• <tfoot id='ofXzA'></tfoot>
    <i id='ofXzA'><tr id='ofXzA'><dt id='ofXzA'><q id='ofXzA'><span id='ofXzA'><b id='ofXzA'><form id='ofXzA'><ins id='ofXzA'></ins><ul id='ofXzA'></ul><sub id='ofXzA'></sub></form><legend id='ofXzA'></legend><bdo id='ofXzA'><pre id='ofXzA'><center id='ofXzA'></center></pre></bdo></b><th id='ofXzA'></th></span></q></dt></tr></i><div id='ofXzA'><tfoot id='ofXzA'></tfoot><dl id='ofXzA'><fieldset id='ofXzA'></fieldset></dl></div>

    1. <small id='ofXzA'></small><noframes id='ofXzA'>

      • <bdo id='ofXzA'></bdo><ul id='ofXzA'></ul>
      <legend id='ofXzA'><style id='ofXzA'><dir id='ofXzA'><q id='ofXzA'></q></dir></style></legend>

      1. 用于在 gmail 中插入数学的 Greasemonkey 脚本

        Greasemonkey script for inserting math in gmail(用于在 gmail 中插入数学的 Greasemonkey 脚本)

          <i id='Cf8Nf'><tr id='Cf8Nf'><dt id='Cf8Nf'><q id='Cf8Nf'><span id='Cf8Nf'><b id='Cf8Nf'><form id='Cf8Nf'><ins id='Cf8Nf'></ins><ul id='Cf8Nf'></ul><sub id='Cf8Nf'></sub></form><legend id='Cf8Nf'></legend><bdo id='Cf8Nf'><pre id='Cf8Nf'><center id='Cf8Nf'></center></pre></bdo></b><th id='Cf8Nf'></th></span></q></dt></tr></i><div id='Cf8Nf'><tfoot id='Cf8Nf'></tfoot><dl id='Cf8Nf'><fieldset id='Cf8Nf'></fieldset></dl></div>
        1. <legend id='Cf8Nf'><style id='Cf8Nf'><dir id='Cf8Nf'><q id='Cf8Nf'></q></dir></style></legend>
            <bdo id='Cf8Nf'></bdo><ul id='Cf8Nf'></ul>

              <tfoot id='Cf8Nf'></tfoot>
              • <small id='Cf8Nf'></small><noframes id='Cf8Nf'>

                  <tbody id='Cf8Nf'></tbody>
                  本文介绍了用于在 gmail 中插入数学的 Greasemonkey 脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我希望能以一种简单的方式与 gmail 交流数学方程式.

                  I wish an easy way to communicate mathematical equations with gmail.

                  有一个名为 AsciiMath 的 javascript 脚本,它应该翻译 Tex-将方程转换为标准的 mathML.

                  There's a javascript script called AsciiMath, which should translate Tex-like equations into standard mathML.

                  我认为将这个脚本与 GM 一起使用会很好.我认为在发送电子邮件之前,此脚本会将您电子邮件中的所有类似 TeX 的方程转换为 MathML.因此,使用 FF(或安装了 MathPlayer 的 IE)的阅读器将能够轻松阅读这些方程式.

                  I thought that it would be nice to use this script with GM. I thought that before sending the email, this script would convert all the TeX-like equations in your email to MathML. Thus the reader which is using FF (or IE with MathPlayer installed) would be able to easily read those equations.

                  理想情况下,我希望以某种方式将原始的类似 TeX 的方程保存在纯文本消息中,以便纯文本电子邮件客户端(例如 mutt)可以读取它.

                  Ideally, I wish to somehow keep the original TeX-like equations in a plain-text message, so that it would be readable by plain text email clients, such as mutt.

                  显然,这里最薄弱的环节是客户端软件,它很可能不支持 MathML.不过,如果我的通讯员使用的是 Firefox 和某种网络邮件(这很合理),它应该可以工作.

                  Obviously the weakest link here is the client software, which most likely doesn't support MathML. Still if my correspondent is using Firefox and some kind of webmail (which is pretty reasonable) - it should work.

                  我的问题是,这可能吗?有人这样做吗?

                  My question is, is it possible? Did anyone do that?

                  您是否发现此方法存在任何技术问题(gmail 过滤 MathML、客户端未正确解析等)?

                  Do you see any technical problems with this approach (gmail filtering the MathML, client not parsing it correctly etc.)?

                  有什么更聪明的想法吗?

                  Any smarter ideas?

                  推荐答案

                  GmailTeX 完全符合您的要求.它是纯 javascript,因此可以在 Firefox、Chrome、Opera 中使用.

                  GmailTeX does exactly what you want. It is pure javascript so it works in Firefox, Chrome, Opera.

                  这篇关于用于在 gmail 中插入数学的 Greasemonkey 脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
                  问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)

                  <i id='nNPaI'><tr id='nNPaI'><dt id='nNPaI'><q id='nNPaI'><span id='nNPaI'><b id='nNPaI'><form id='nNPaI'><ins id='nNPaI'></ins><ul id='nNPaI'></ul><sub id='nNPaI'></sub></form><legend id='nNPaI'></legend><bdo id='nNPaI'><pre id='nNPaI'><center id='nNPaI'></center></pre></bdo></b><th id='nNPaI'></th></span></q></dt></tr></i><div id='nNPaI'><tfoot id='nNPaI'></tfoot><dl id='nNPaI'><fieldset id='nNPaI'></fieldset></dl></div>
                    <tbody id='nNPaI'></tbody>
                  <tfoot id='nNPaI'></tfoot>
                • <small id='nNPaI'></small><noframes id='nNPaI'>

                    <bdo id='nNPaI'></bdo><ul id='nNPaI'></ul>

                          • <legend id='nNPaI'><style id='nNPaI'><dir id='nNPaI'><q id='nNPaI'></q></dir></style></legend>