How can we use Mathematical Symbols in a SharePoint Page.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this answer should be reported.
Farid Hasan
There are two indirect ways of using mathmetical symbols in SharePoint.
1) You can create mathmetical equations in MS Word and then copy and paster from there to SharePoint.
Here is a url for Microsoft Word and designing mathmetical symbols
Insert mathmetical symbols in MS word
2) There is a markup language called MML (Mathmetical Markup Language)
In web parts you can try using MML same as you embed HTML or css code.
Here is an example
Notation: x^2 + 4x +4 = 0
Markup:
x
2
4
x
4
0
Note that the relation element is used much like the apply element, except that it is used with relations instead of operators and function.
There are more examples and detail on the Mathmetical Markup Language(MML)
Stevie
There are 2 possible ways for adding Mathematical equations in SharePoint.
1) You can write mathematical expressions in Word first and then Copy/paste.
Information about insert mathematical symbols in word:
2)
2
3
4
5
6
7
8
9
<
html
>
<
head
>
<
script
type
=
"text/javascript"
src
=
"http://latex.codecogs.com/latexit.js"
></
script
>
</
head
>
<
body
>
<
h1
>Theorem of Pythagoras</
h1
>
<
div
lang
=
"latex"
>a^2 + b^2 = c^2</
div
>
</
body
>
</
html
>
Upload the above script to your SharePoint site and add a Content Editor Web Part to the page. Add the link to your script to the Content Editor Web Part.
The result will look like this:
Pretty simple right? This way you can add all kinds of mathematical formulas to your SharePoint pages.
I hope you liked my post and I hope to see you again next time