some more formulas authored by joha2's avatar joha2
......@@ -11,6 +11,15 @@ For generating the encoded URL, please use the http://www.url-encode-decode.com/
But beware spaces get transformed into +, you need to substitute them by `%20` yourself.
Line breaks are possible to, just by inserting `\\`.
If you use python2 you may use the following code snipped
import urllib
urllib.quote(r'ds^2 = -c^2 dt^2 + dx^2 + dy^2 + dz^2\\ ds^2 = \eta_{\mu\nu} dx^\mu dx^\nu')
to get
![equation](http://latex.codecogs.com/gif.latex?ds%5E2%20%3D%20-c%5E2%20dt%5E2%20%2B%20dx%5E2%20%2B%20dy%5E2%20%2B%20dz%5E2%5C%5C%20ds%5E2%20%3D%20%5Ceta_%7B%5Cmu%5Cnu%7D%20dx%5E%5Cmu%20dx%5E%5Cnu)
## Unittests
Due to the growing complexity of the program we have to write some unittests for every functionality.
Use the following external helper sites to assist improvement of the code
......
......