Identify what was copied
Before fixing a broken equation, determine whether the source was Unicode text, LaTeX source, MathML, an equation object, or an image. Copying between applications fails when the destination does not understand the original representation.
A line such as x^2 + y^2 = r^2 is plain text. The source \frac{a}{b} is LaTeX. A Word equation is an application object even when it displays familiar characters.
Match the symptom to the cause
| Symptom | Likely cause | First fix |
|---|---|---|
| Backslashes appear literally | LaTeX pasted into plain text | Use a LaTeX-enabled field or render before export |
| Square boxes replace symbols | Missing font glyphs | Use a Unicode math font or a different output format |
Fractions become a/b | Structure was flattened | Paste the equation source or rebuild in an equation editor |
| Superscripts return to the baseline | Rich formatting was stripped | Use structured math or explicit Unicode only for simple powers |
| Characters change after PDF copy | PDF font mapping or reading order | Copy from the editable source instead of the PDF |
Recover LaTeX source
If the destination supports LaTeX, paste only the expression source and use the correct delimiters:
Inline: $E=mc^2$
Display: \[E=mc^2\]
If the application supports a limited command set, simplify unsupported macros before pasting. Test a small expression first rather than transferring a full page of equations.
Recover Word or office equations
Insert a new equation field before pasting. In Word, a supported linear form such as the following can be converted into professional layout:
\sqrt(x^2+y^2)
Do not paste the same text into an ordinary paragraph and expect it to render. If the equation object came from another office application, use “paste special” options and keep an editable source copy.
Repair plain-text symbols
For isolated signs, replace look-alikes with verified Unicode characters. Check minus, multiplication, degree, prime, Greek letters, and relation symbols carefully. A font change may fix display, but it does not fix an incorrect code point.
Troubleshoot web output
When HTML displays raw MathML tags, confirm that the markup is not escaped and that the browser supports the elements used. When a Markdown site shows raw dollar signs, verify that its renderer actually enables mathematical expressions; CommonMark alone does not define a universal math extension.
Verify before publishing
Open the final output on a second device or application. Compare grouping, signs, exponents, roots, matrix dimensions, and equation numbering with the editable source. If meaning could be ambiguous, include a plain-language reading or accessible description alongside the equation.
How this guide was checked
Review method: Intent alignment review, notation/source verification, worked-example check, cross-format rendering review, and duplicate-content comparison for Equation Copy-and-Paste Troubleshooting
Verified against: Official standards, primary documentation, and the page-specific sources listed below
What changed: Removed repeated sitewide boilerplate and added content-type-specific decision, verification, and applicability guidance for this exact task.
Page purpose: equation copy paste troubleshooting — Find, diagnose, and correct notation or workflow errors
Automated quality check: Passed critical indexing checks.
Verification references
These primary standards and official documentation pages were used to check character identity, syntax, or platform behavior described above.
- The Unicode StandardUnicode Consortium — Character identity, encoding, names, and conformance.
- Unicode Technical Report #25: Unicode Support for MathematicsUnicode Consortium — Mathematical character usage, variants, and notation support.
- LaTeX Project DocumentationThe LaTeX Project — LaTeX syntax, authoring model, and official documentation links.
- MathML CoreW3C — Semantic web mathematics elements and browser behavior.