3

I see lines like the following at https://plotly.com/python/v3/alpha-shapes/

Let $S$ be a finite set in $\mathbb{R}^d$, $d=2,3$ (i.e. a set of 2D or 3D points).

What is it? MathML or embedded latex or something else? Do I need an extension to view it? I have already tried chrome, edge, firefox, opera on windows. I looked at the html of the page I see use of the term mathjax.

qqqqq
  • 165

1 Answers1

5

What is it? MathML or embedded latex or something else?

It's LaTeX embedded.

Do I need an extension to view it?

You shouldn't need anything, the server should do the rendering. Many markdown flavours (but neither Github nor SuperUser do) and CMS know that syntax, often with help of Katex or MathJax. Unfortunately, here, Potly Dash did not do it directly.
Authors should check how to include the needed JS+CSS so you (the readers) have a better experience with their pages.

gildux
  • 282