Last active
December 15, 2015 04:09
-
-
Save ozselgin/5199797 to your computer and use it in GitHub Desktop.
Basic mathjax example. LaTeX is used. Basit mathjax örneği. LaTeX notasyonu kullanıldı.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> | |
</head> | |
<body> | |
<ol> | |
<li> | |
\[ | |
\frac{8 \sqrt{6}}{2 \sqrt{3}} | |
= | |
\frac{8}{2}\sqrt{\frac{6}{3}} | |
= | |
4\sqrt{2} | |
\] | |
</li> | |
<li> | |
\[ | |
\sqrt{\frac{25}{64}} | |
= | |
\frac{\sqrt{25}}{\sqrt{64}} | |
= | |
\frac{5}{8} | |
\] | |
</li> | |
</ol> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment