在github wiki中的LaTeX数学

Aur*_*ius 27 wiki latex github

是否可以使用github repo wiki以任何方式包含LaTeX风格的数学?谷歌搜索意味着github不再允许像MathJax这样的东西,但大多数参考文献已经存在多年了.在github wikis中包含LaTeX格式的数学有哪些(如果有的话)替代品?

Vil*_*mko 15

您可以使用chart.apis.google.com将LaTeX公式渲染为PNG.它与Githhub的降价很好地配合:

示例(Markdown):

The ratio of the momentum to the velocity is
the relativistic mass, m.

![f1]

And the relativistic mass and the relativistic
kinetic energy are related by the formula:

![f2]

Einstein wanted to omit the unnatural second term
on the right-hand side, whose only purpose is
to make the energy at rest zero, and to declare
that the particle has a total energy, which obeys:
![f3] which is a sum of the rest energy ![f4]
and the kinetic energy.

[f1]: http://chart.apis.google.com/chart?cht=tx&chl=m=\frac{m_0}{\sqrt{1-{\frac{v^2}{c^2}}}}
[f2]: http://chart.apis.google.com/chart?cht=tx&chl=E_k=mc^2-m_0c^2
[f3]: http://chart.apis.google.com/chart?cht=tx&chl=E=mc^2
[f4]: http://chart.apis.google.com/chart?cht=tx&chl=m_0c^2
Run Code Online (Sandbox Code Playgroud)

HTTPS

Github Enterprise的某些安装http仅在您使用时拒绝并工作https

渲染: 在此输入图像描述


Ion*_*zău 11

对于简单的公式(例如指数等),您可以只使用可用的渲染语言.例如,使用Textile,您可以:

_E = mc ^2^_
Run Code Online (Sandbox Code Playgroud)

Thiw将呈现为:

_用于斜体样式和^上标.

您可以在Markdown添加一些HTML时执行相同的操作:

*E = mc<sup>2</sup>*
Run Code Online (Sandbox Code Playgroud)

你可以在这个地方看到它的实际效果:

E = mc 2

如果您正在寻找对复杂数学公式的支持,那么您没有比使用为您生成图像的第三方服务更好的选择.mathUrl看起来很有趣.

作为输入,我们给它E = mc ^ 2,它生成以下链接:

http://mathurl.com/render.cgi?E%20%3D%20mc%20%5E%202%5Cnocache