NexoText

Academic Paper Cleaner

Paste text from Word, PDF, or Google Docs → get clean LaTeX/Markdown-ready output. Fixes smart quotes, em/en dashes, citation brackets [1], figure refs, tracked changes, non-breaking spaces, and more. Free, browser-only, no sign-up.

0 / 100,000 characters0 words

Runs entirely in your browser. Your manuscript is never uploaded, stored, or shared. Safe for pre-submission manuscripts, theses, and confidential research.

What This Academic Paper Cleaner Fixes

Smart quotes → straight ✓Em dashes (—) → --- ✓En dashes (–) → - ✓Citation brackets [1] ✓Figure/Table refs ✓Tracked changes ✓Multiple spaces ✓Non-breaking spaces ✓Ellipsis (…) → ... ✓Bullet chars (•) → - ✓Section symbols (§) ✓Browser-only ✓Free, no sign-up ✓

Common Use Cases

LaTeX/Overleaf prep: Paste from Word → clean quotes, dashes, citations → paste into .tex

Journal submission: Remove tracked changes, normalize figure refs, strip citation brackets per journal style

Thesis/dissertation: Clean entire chapters before final PDF generation

PDF copy-paste: Fix ligatures (fi, fl), non-breaking spaces, bullet chars from PDF extraction

Collaborative editing: Strip co-author tracked changes before final version

Grant applications: Clean NIH/NSF biosketches, specific aims pages from Word templates

The Last-Minute Manuscript Cleanup Every Researcher Dreads

You have spent months on the research. The data is solid, the argument is tight, and the deadline is tomorrow. You open the final Word document to copy into LaTeX or the journal submission portal, and there they are: smart quotes that break biblatex, em dashes that crash XeLaTeX, citation brackets [1] the journal style guide forbids, figure references with en dashes (Figure 2–3), tracked changes from your co-author, non-breaking spaces from the PDF you cited, and bullet characters that render as garbage in plain text.

Fixing these by hand takes hours you do not have. This free academic paper cleaner does it in seconds. Paste your manuscript, choose which fixes to apply, and get clean, LaTeX-ready, journal-compliant text. No upload, no account, no limit — your manuscript never leaves your browser.

What This Tool Fixes (At a Glance)

Each cleaning operation targets a specific LaTeX-breaking or journal-rejection trigger. Toggle any combination to match your target format.

ProblemBeforeAfterWhy It Matters
Smart double quotes"Hello""Hello"Breaks biblatex, csquotes, plain text
Smart single quotes'World''World'Same as above
Em dash---LaTeX: --- = em dash, -- = en dash
En dash (ranges)Figure 1–3Figure 1-3Consistent hyphen avoids XeLaTeX errors
Citation brackets[1], [Smith 2023](removed)Journals require specific formats
Figure/Table refsTable 2–4Table 2-4Normalize dash style
Tracked changes~~del~~ ++ins++(removed)Never submit with edit artifacts
Non-breaking space (space)Invisible, breaks grep/search
Ellipsis...Three dots = standard
Bullet chars• ● ▪-Plain text / Markdown safe
Section symbol§Section Readable, LaTeX-safe

Real-World Workflows: How Researchers Use This Daily

LaTeX / Overleaf Prep

Write in Word or Google Docs with collaborators. When ready, paste each chapter into the cleaner → Select All → Copy → Paste into Overleaf .tex file. Compiles clean on first try. No more "Unicode char not set up for use with LaTeX" errors.

Journal Submission Compliance

Target journal requires: no citation brackets, em dashes as ---, figure refs with hyphens, no tracked changes. Paste manuscript → enable only those four options → Copy → Submit. Saves 2–3 hours of manual find-replace per paper.

Thesis / Dissertation Final Polish

200+ pages across chapters. Paste each chapter, clean, download TXT. Batch-process the entire thesis in 15 minutes. University library accepts clean plain text for digital repository; no Word formatting artifacts in the archived PDF.

PDF Literature Copy-Paste

Copying from PDFs brings ligatures (fi, fl), non-breaking spaces, bullet chars, broken lines. Paste → Select All → get clean text for your literature review notes or reference manager. No more invisible garbage in your Zotero/Mendeley library.

Grant Applications (NIH/NSF)

Biosketches, specific aims, and research strategy pages often drafted in Word templates. Clean before pasting into SciENcv, FastLane, or Research.gov. Removes tracked changes from co-investigator edits. Ensures plain-text compliance for character limits.

Collaborative Editing Cleanup

Three co-authors, two rounds of tracked changes. Before final version, paste the manuscript → enable tracked changes + smart quotes + dashes → get clean final copy. No stray "++accepted++" or "~~rejected~~" in the published paper.

Under the Hood: What the Cleaner Actually Does

Transparency builds trust — especially when you are about to paste your life's work into a web tool. Here is exactly how each cleaning operation works, so you can verify it matches your requirements.

Smart Quotes → Straight Quotes

Replaces Unicode LEFT/RIGHT DOUBLE QUOTATION MARK (U+201C, U+201D) and LEFT/RIGHT SINGLE QUOTATION MARK (U+2018, U+2019) with ASCII QUOTATION MARK (U+0022) and APOSTROPHE (U+0027).

regex: /[\u201C\u201D]/g → "   |   /[\u2018\u2019]/g → '

Em Dashes → Triple Hyphens

Replaces EM DASH (U+2014) with three ASCII hyphens. In LaTeX, ---produces an em dash, -- an en dash, - a hyphen.

regex: /\u2014/g → ---

En Dashes in Ranges → Hyphens

Finds EN DASH (U+2013) between digits (1–3) or word characters (Chapter 1–2) and replaces with ASCII hyphen. Preserves en dashes used correctly in compound adjectives (not currently detected — enable manually if needed).

regex: /(\d)\u2013(\d)/g → $1-$2 | /(\w)\u2013(\w)/g → $1-$2

Citation Bracket Removal

Two patterns: numeric [1], [2-4], [5, 7, 9]and author-year [Smith 2023], [Jones & Lee, 2022]. Entire bracket content removed. Does not touch square brackets used for other purposes (e.g., [sic], [emphasis added]).

regex: /\[\s*\d+(?:[-,]\s*\d+)*\s*\]/g | /\[\s*[A-Za-z][^\]]*\s*\]/g

Figure / Table Reference Normalization

Finds Figure 1, Figure 2–3, Table 1,Table 4–5 (case-insensitive) and replaces any en/em dash in the number range with a simple hyphen. Preserves the word "Figure" or "Table".

regex: /[Ff]igure\s+\d+(?:[\u2013\u2014]\d+)?/g → replace \u2013/\u2014 with -

Tracked Changes Artifacts

Removes three common patterns: strikethrough ~~deleted~~ (Markdown/Word), underline ++inserted++ (Google Docs), and bracketed markers[deleted], [inserted], [formatted],[moved] (Word/Google Docs comment format).

regex: /~~[^~]+~~/g | /\+\+[^+]+\+\+/g | /\[\s*(?:deleted|inserted|moved|formatted)[^\]]*\]/gi

Whitespace & Special Characters

  • Multiple spaces: / {2,}/g → " "
  • Excess blank lines: /\n{3,}/g → "\n\n" (keeps paragraph breaks)
  • Non-breaking space: /\u00A0/g → " "
  • Ellipsis: /\u2026/g → "..."
  • Bullets: /[•●▪▫]/g → "-"
  • Section symbol: /§/g → "Section "

Who Should Use This Academic Paper Cleaner?

Whether you're writing your first university assignment or preparing a research paper for an international journal, formatting issues can slow you down. This academic paper cleaner is designed for anyone who needs clean, publication-ready text without spending hours fixing hidden formatting problems manually.

Students & University Assignments

Students frequently copy text between Microsoft Word, Google Docs, PDFs, and online journals. During this process, smart quotes, extra spaces, broken line breaks, and invisible Unicode characters often appear. This tool removes those issues before you submit assignments, essays, reports, dissertations, or coursework.

Researchers & Journal Authors

Academic journals often require strict formatting before submission. Whether you're submitting to IEEE, ACM, Springer, Elsevier, Nature, or any university journal, this cleaner helps normalize quotation marks, citation brackets, figure references, tracked changes, and other formatting artifacts that commonly appear during manuscript preparation.

LaTeX & Overleaf Users

Copying content from Word into LaTeX or Overleaf can introduce Unicode characters that generate compilation errors. Cleaning your manuscript first helps prevent smart quotes, em dashes, non-breaking spaces, and other hidden characters from breaking your document.

PhD Scholars & Thesis Writers

Large theses often contain hundreds of pages collected from multiple sources over several years. This tool makes it easier to clean every chapter before final submission by removing inconsistent formatting, extra blank lines, copied PDF artifacts, and unnecessary symbols.

Editors & Proofreaders

Editors regularly receive documents from different authors using different writing software. Instead of manually fixing formatting problems line by line, you can quickly standardize text before proofreading, editing, or publishing.

Common Formatting Problems This Tool Solves

Many formatting problems are invisible until they cause submission errors, broken LaTeX compilation, or inconsistent document formatting. This tool automatically fixes many of the most common issues researchers encounter every day.

Word to LaTeX Formatting Errors

Convert smart quotes, Unicode punctuation, and special symbols into plain-text characters that work reliably inside LaTeX projects.

Google Docs Formatting Cleanup

Remove leftover tracked changes, hidden formatting, and copied editing artifacts before sharing your final manuscript.

PDF Copy & Paste Cleanup

Fix broken spacing, unwanted line breaks, bullet characters, ligatures, and invisible Unicode characters commonly introduced when copying text from PDFs.

Journal Submission Preparation

Prepare manuscripts for peer review by removing formatting inconsistencies before uploading to journal submission systems.

Why Not Just Use Word's Find & Replace?

Microsoft Word's Find & Replace works well for simple replacements, but academic manuscripts usually contain dozens of different formatting problems at the same time. Fixing each issue individually quickly becomes repetitive and increases the chance of missing hidden characters.

This academic paper cleaner applies multiple cleanup operations in one pass. Instead of performing separate searches for smart quotes, em dashes, citation brackets, non-breaking spaces, tracked changes, bullet symbols, and excess whitespace, you can enable the options you need and clean the entire document in seconds.

Because everything runs directly in your browser, your manuscript never leaves your computer. No files are uploaded, no account is required, and there is nothing to install.

Related Text Tools on NexoText

After cleaning your manuscript, these tools help you finish the job:

Remove Special Characters — Strips any remaining Unicode artifacts, ligatures (fi, fl), zero-width spaces, and control characters that the paper cleaner might miss.

Word Counter — Verify your cleaned manuscript meets journal word limits (abstract 250 words, main text 6000 words, etc.). Real-time count with reading time.

Sentence Counter — Check sentence length distribution. Journals often flag sentences over 25 words.

Readability Checker — Ensure your abstract and significance statement are readable (Flesch ≥ 60, grade ≤ 10).

APA & MLA Citation Generator — After stripping citation brackets, regenerate references in your target journal's exact format (Vancouver, APA, IEEE, etc.).

Text Case Converter — Section headings often need Title Case or Sentence case. Convert entire documents in one click.

Duplicate Line Remover — Clean up reference lists or author affiliation lines that got duplicated during copy-paste.

Your Research Deserves Clean Text

You did not spend months in the lab, at the keyboard, or in the field to have a smart quote or an en dash stand between your manuscript and publication. The science matters. The words matter. The formatting should be invisible.

Paste your manuscript above. Choose your fixes. Copy clean text. Submit with confidence. The cleaner is free, private, and always will be — because researchers have enough expenses already.

Frequently Asked Questions

What does this academic paper cleaner fix?

This tool fixes smart quotes (“ ” ‘ ’ → straight quotes), em dashes (— → ---), en dashes (– → -), citation brackets ([1], [Smith 2023]), figure/table references (Figure 1–2, Table 3), tracked changes artifacts (strikethrough, underline, change markers), multiple spaces, excess blank lines, non-breaking spaces, ellipsis (… → ...), bullet characters (• → -), and section symbols (§ → Section).

Is my manuscript uploaded or stored?

No. This academic paper cleaner runs entirely in your browser using JavaScript. Your text never leaves your device, is never sent to a server, and is never stored. It works offline once the page loads. This makes it safe for pre-submission manuscripts, theses, dissertations, and confidential research.

Can I choose which cleaning operations to apply?

Yes. The tool provides 11 granular checkbox options: smart quotes, em dashes, en dashes, citation brackets, figure/table refs, tracked changes, multiple spaces, empty lines, non-breaking spaces, ellipsis, bullet characters, and section symbols. You can enable/disable each individually or use Select All / Clear All.

Does this work for LaTeX/Overleaf preparation?

Yes. This is one of the primary use cases. Paste text from Word, Google Docs, or PDF into the cleaner, enable the options you need (typically all), and copy the cleaned output directly into your .tex file or Overleaf editor. It converts smart quotes to straight quotes, normalizes dashes, removes citation brackets, and fixes special characters that break LaTeX compilation.

Can it clean text copied from PDFs?

Yes. PDF copy-paste often brings ligatures (fi, fl), non-breaking spaces, bullet characters (•, ●), and broken line breaks. This cleaner handles all of these: it converts ligatures to regular characters, replaces non-breaking spaces with regular spaces, normalizes bullets to hyphens, and collapses excess blank lines.

How does it handle citation brackets?

The citation bracket remover handles two common formats: numeric citations like [1], [2-4], [5, 7, 9] and author-year citations like [Smith 2023], [Jones & Lee, 2022]. Enable the 'Citation brackets' option to strip them all. This is useful when journals require a specific citation format different from your draft.

What about tracked changes from Word/Google Docs?

The tracked changes cleaner removes strikethrough text (~~deleted~~), underline additions (++inserted++), and change markers like [deleted], [inserted], [formatted], [moved]. This is essential before submitting a final manuscript — you don't want reviewer edits or co-author changes leaking into the published version.

Does it normalize figure and table references?

Yes. It finds references like 'Figure 1', 'Figure 2–3', 'Table 1', 'Table 4–5' and normalizes any en dashes or em dashes in ranges to simple hyphens (Figure 1-2, Table 3-4). This ensures consistency across your manuscript and avoids LaTeX errors from special dash characters.

Can I see what changes were made?

Yes. After cleaning, the tool shows a summary of changes made (e.g., 'Smart double quotes: 12', 'Em dashes: 5', 'Citation brackets: 8') with counts for each type. There's also a collapsible character-level diff viewer that shows exactly what was deleted and inserted at each position.

Is this tool free to use?

Yes. This academic paper cleaner is completely free with no sign-up required. It runs entirely in your browser and has no usage limits. You can clean as many manuscripts as you need, as often as you need.