You my recognize the function shown above as the trigonometric formula to calculate arc length in radians. In this article I explain my method for hand-coding complex mathematical expressions such as this.
<math> <mo>(</mo><mn>-1</mn><mo>)</mo> <sup><mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow></sup> </math>
First, write the code for the numerator of the fraction, which contains a complex exponent.
<math> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </math>
Next, write the code for the denominator of the fraction.
<math> <mfrac> <mrow> <msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow> <mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow> </msup> </mrow> <mrow> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </mrow> </mfrac> </math>
Then use an <mfrac> element to create the fraction.
<math> <mo>∑</mo> <mfrac> <mrow> <msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow> <mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow> </msup> </mrow> <mrow> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </mrow> </mfrac> </math>
Next place the code for the summation symbol before the fraction.
<math> <munder> <mrow><ms lquote=" " rquote=" ">∑</ms></mrow> <mrow><mi>n</mi><mo>≥</mo><mn>0</mn></mrow> </munder> <mfrac> <mrow> <msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow> <mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow> </msup> </mrow> <mrow> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </mrow> </mfrac> </math>
Then use a <munder> element to put the range under the summation symbol.
<math> <mi>sin</mi> <mo>θ</mo> <mo>=</mo> <munder> <mrow><ms lquote=" " rquote=" ">∑</ms></mrow> <mrow><mi>n</mi><mo>≥</mo><mn>0</mn></mrow> </munder> <mfrac> <mrow> <msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow> <mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow> </msup> </mrow> <mrow> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </mrow> </mfrac> </math>
Then code the left side and equals sign of the equation.
<math> <mi>sin</mi> <mo>θ</mo> <mo>=</mo> <munder> <mrow><ms lquote=" " rquote=" ">∑</ms></mrow> <mrow><mi>n</mi><mo>≥</mo><mn>0</mn></mrow> </munder> <mfrac> <mrow> <msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow> <mrow> <mstyle mathsize="big"> <mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow> </mstyle> </msup> </mrow> <mrow> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </mrow> </mfrac> </math>
You may have noticed that the text size of the exponent in the numerator of the fraction is very tiny. You can fix this by using an <mstyle> element with a mathsize attribute set to "big".
More Graphics Design Tips:
• Anti-Aliasing
• MathML mtext Element to Display Plain Text
• Building an Image with a Logo
• Find Free Stock Photos You'll Actually Want to Use For Your Website or Blog
• How to De-haze a Photo with GIMP
• SVG Example Code to Rotate Elements
• Inscape Text in a Shape
• How to Use Basic Linear Gradients in Inkscape
• Inkscape Basics
• Graphic Design Meets Open Source