-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is a stand-alone installation possible? #3324
Comments
Yes. See the documentation on hosting your own copy of MathJax. Note, however, that using python -m http.server 8000 in the directory with your HTML files and load your pages via
It is free and open source (the source code for v3 and above can be found here). MathJax is licensed under the Apache2 open-soutce license, which is pretty lenient. Version 3 has no external references. Version 4 (currently in beta) references cdn.jsdelivr.net for the font packages, but there is a configuration option that lets you change that. |
My goal is to put it on the web and make it publicly accessible. Otherwise I have pencil and paper for equations for my private use, and I have no need of a computer for that. Now for the svg, I make a very simple document and save it as \documentclass[]{article}
\pagestyle{empty}
\begin{document}
$$E=mc^2$$
\end{document} And then the following
The resulting file At some point, I am considering the convenience of coding math equations in straight HTML in comparison to debugging obscure What I do not want to do is create a website with a lot of cross site scripting vulnerabilities and dependencies on third party APIs to display basic content. Mathjax fonts might not be the fonts that I want to use for my math equations, but if the fonts are available, then I might want to install them locally on my web server and include them in the |
Well, it looks like you have everything you want, without the need for MathJax. Carry on, then! |
Does this work say for instance offline for private use as well as on the web without contacting third-party services?
Is it free and open source or are there specific service-provider domain names hard-coded in the software?
The text was updated successfully, but these errors were encountered: