vscode-markdown-pdf icon indicating copy to clipboard operation
vscode-markdown-pdf copied to clipboard

Add math

Open 73jn opened this issue 1 year ago • 1 comments

Possibility to export mathematical functions. Closes #276, #237

73jn avatar Mar 08 '23 15:03 73jn

You can enable automatic linebreaking↙️ to avoid overflow when a math expression is too long.

<script type="text/x-mathjax-config">
  MathJax.Hub.Config({
    extensions: ["tex2jax.js"],
    tex2jax: {
      inlineMath: [ ['$','$'] ],
      displayMath: [ ['$$','$$'] ],
    },
    "CommonHTML": { linebreaks: { automatic: true } },
    "HTML-CSS": { linebreaks: { automatic: true } },
  });
</script>

VVsxmja avatar Apr 11 '23 06:04 VVsxmja