Reputation: 31
I'm using bootstrap to make a website, I'm using Bootstrap as a nice framework and I'm wondering how to do mathematical symbols, such as the algebraic version of x, as well as alpha, beta and gamma.
Not to mention it would be helpful to show indices, for example 3^2 would just look like it would if you were to write it.
Upvotes: 3
Views: 5075
Reputation: 171
There are HTML entities for mathematical symbols, check out this
Mnemonic output code
α = α α
β = β β
γ = γ γ
× = × ×
² = x² ²
Upvotes: 3
Reputation: 437
You have plenty of options to choose from - here are a few solid ones:
All options have their merits. Here are a few resources for each option:
A lot of the options that I described came from this link.
If you're thinking of doing a wide variety of mathematical formulas, option #1 could be the way to go. If you use something that supports a wide swath of browsers (e.g., MathJax), then you might have a solid solution.
Upvotes: 3