The same formula redone in Word, PPT, and WeChat—and one always blurs or fails. The cause is not that you lack skill; each platform supports "formulas" differently. The fix: treat the formula as a standalone source—write once, export the format each platform needs.

Why Do Formulas Break on Some Platforms?
Three platform types handle formulas completely differently. Match the platform to avoid pitfalls:
- Word: has a built-in equation editor; simple formulas are fine, but complex structures (matrices, aligned lines, stacked limits) are slow to enter, and formulas are tightly bound to Word;
- PPT: weak native formula support—many people screenshot Word equations and paste them in; bitmaps blur when enlarged, especially on a projector;
- WeChat / most web editors: no formula input at all, and no SVG—only bitmap images.
Once you see this, the answer is clear: instead of fighting each platform, manage formulas independently.
The General Approach: Write in LaTeX Once, Pick Format by Platform
LaTeX is the de facto standard for academic math typesetting—compact syntax, strong expressiveness, almost any structure. Treat it as the formula "source file":
- Write the formula in an editor with live preview;
- No syntax expertise required—use panels for Greek letters, integrals, sums, matrices, etc.;
- Export as vector SVG or high-resolution PNG;
- Insert the image into the target platform.
The LaTeX formula editor is built for this: write and preview side by side, one-click SVG/PNG export, formulas rendered locally in the browser without upload. The core problem it solves—you maintain one formula, output adapts to every platform.
SVG or PNG? Choose by Platform
This step determines clarity. The rules are simple:
| Target platform | Recommended format | Reason |
|---|---|---|
| PPT, web pages | SVG | Vector—projection and scaling stay sharp |
| WeChat articles | High-resolution PNG | Editor does not support SVG, only bitmaps |
| Word | SVG (newer) / high-res PNG (older) | Depends on Office SVG support |
| Papers, print | SVG | Vector—no loss in print |
Rule of thumb: use SVG when you can; fall back to high-resolution PNG when the platform does not support it. For bitmap export, resolution high enough (better slightly large then scale down) to avoid blur after insert.
A Reproducible Example: Gaussian Distribution in a WeChat Article
- Enter
f(x)=\frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{(x-\mu)^2}{2\sigma^2}}in the formula editor; - Confirm rendering on the right;
- Because the target is WeChat, export PNG (WeChat does not accept SVG);
- Back in the WeChat editor, insert as an image.
The whole flow takes under a minute, and the same image works later in PPT or blog posts—that is the value of "write once, reuse everywhere."
Boundaries: When Not to Use This Workflow
If you are building pure web pages with many formulas, the more professional approach is KaTeX/MathJax rendering LaTeX text directly—not pasted images—so formulas are searchable and scale with theme. The image workflow fits Word/PPT/WeChat and other "images only" closed carriers. Which to choose depends on whether the carrier can render formulas natively.
Summary
Do not fight each platform's equation features. Use LaTeX as the formula source, write once, export SVG or PNG per platform—especially time-saving for complex formulas. Remember: if the carrier can render formulas, use text (KaTeX/MathJax); if it only accepts images, export vector-first images.