formulas removed since not needed authored by joha2's avatar joha2
......@@ -196,29 +196,3 @@ Grin material with coordinate system tilted against global coordinate system.
Water droplet which bends the light of different wavelengths differently in order to create a rainbow.
The material data was obtained from https://refractiveindex.info by Mikhail N. Polyanskiy.
# Formulas
If you want to use formulas in issues or wikis, then the following example would be useful:
![equation](http://latex.codecogs.com/gif.latex?%5Cnabla%5Ctimes%20H%3D%5Cdot%7BD%7D%2BJ)
For generating the encoded URL, please use the http://www.url-encode-decode.com/ link.
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
s = urllib.quote(r'ds^2 = -c^2 dt^2 + dx^2 + dy^2 + dz^2\\ ds^2 = \eta_{\mu\nu} dx^\mu dx^\nu')
print(s)
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)
If there is no python console available then you may use:
http://doc.pyschools.com/console
and type in the code given above there. Then copy the string printed by the print statement into the url http://latex.codecogs.com/gif.latex? right after the ?.
\ No newline at end of file