vscode-markdown-pdf
vscode-markdown-pdf copied to clipboard
What am I missing? It doesn't convert math formula embedded at all.
Thatis right, it doesn't support rendering math formula. Therte's no suppoprt for Tex, Latex, Katex, MathJax.
If you want to convert Markdown with math formatting to PDF, try Pandoc.
https://pandoc.org/
See #21. You can append this <script> to your Markdown document. When it exports, the LaTeX should be rendered properly.
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ tex2jax: {inlineMath: [['$', '$']]}, messageStyle: "none" });
</script>
See #21. You can append this
<script>to your Markdown document. When it exports, the LaTeX should be rendered properly.<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: {inlineMath: [['$', '$']]}, messageStyle: "none" }); </script>
Nice fix thx. But it does work in private net. Any offline alternatives available?