LaTeXスタイルの数学をgithubリポジトリウィキに含めることは可能ですか?グーグルは、githubがMathJaxのようなものを許可しなくなったことを意味しますが、ほとんどの参照は古いものです。 LaTeX形式の数学をgithubwikiに含める代わりに(もしあれば)どのような方法がありますか?
chart.apis.google.com
を使用して、LaTeX式をPNGとしてレンダリングできます。それはGithhubのマークダウンでうまく機能します:
例(マークダウン):
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
https
GithubEnterpriseの一部のインストールはhttp
を拒否し、https
を使用した場合にのみ機能します
単純な数式(指数など)の場合は、使用可能なレンダリング言語を使用するだけでもかまいません。たとえば、テキスタイルを使用すると、次のことができます。
_E = mc ^2^_
Thiwは次のようにレンダリングされます。
_
はイタリックスタイルに使用され、^
上付き文字。
いくつかのHTMLを追加してMarkdownで同じことを行うことができます:
*E = mc<sup>2</sup>*
あなたはまさにこの場所でそれが実際に動いているのを見ることができます:
E = mc2
複雑な数式のサポートを探している場合は、画像を生成するサードパーティのサービスを使用するよりも良い選択肢はありません。 mathUrl 面白そうです。
入力としてE = mc ^ 2
そしてそれは次のリンクを生成します:
http://mathurl.com/render.cgi?E%20%3D%20mc%20%5E%202%5Cnocache
GitLabWikiとマークダウンは数式をサポートしています。このため、複数のリポジトリを移動しました。