Many researchers and PhD candidates write their first drafts in Microsoft Word, only to face a formatting crisis when their advisor or target journal requires LaTeX. Converting from Word to LaTeX is possible, but doing it well requires care with equations, figures, tables, and the bibliography. This guide walks through every major element so nothing is lost in translation.
Why convert Word to LaTeX?
LaTeX is the standard for mathematical typesetting, complex multi-column layouts, and publisher compliance. If your journal uses IEEE, Elsevier, Springer, or ACS templates, a clean Word document is not the final delivery format. Converting to LaTeX before or during submission preparation ensures your equations render correctly, your figure paths resolve, and your bibliography matches the journal's style file.
The Word-to-LaTeX conversion pipeline
A reliable conversion follows a consistent sequence: export from Word, convert to .tex, verify the document compiles, then manually fix the elements that automatic tools cannot translate accurately.
- Export from Word as clean .docx
- Convert using Pandoc, Word2TeX, or professional service
- Check the document class and template
- Rebuild the bibliography from source
- Re-insert or re-export figures at high resolution
- Compile and proofread the PDF
Using Pandoc for Word to LaTeX conversion
Pandoc is the most common command-line tool for .docx to .tex conversion. Install Pandoc, then run a basic command from the directory containing your .docx file. Pandoc produces a standalone .tex file with sections, paragraphs, and basic formatting preserved. It does not, however, handle complex tables, Word-specific equation objects, or field codes without additional configuration.
After running Pandoc, inspect the generated .tex file carefully. Automated conversion often introduces malformed LaTeX commands, extra braces, or unrecognized environments. This is especially common with tracked-changes markup or content pasted from external editors.
Preserving equations and math
Word's built-in equation editor (OMML) does not convert cleanly to LaTeX math mode. If your manuscript relies on inline equations, displayed equations, or equation arrays, expect to retype or clean most of them manually after conversion. The most reliable strategy is to export equations separately: use MathType's LaTeX export, or copy-paste equation objects into a LaTeX equation editor before transferring them into the main .tex file.
For papers with heavy mathematics, the conversion cost can exceed the value of an automated approach. Professional LaTeX formatters handle equation-heavy manuscripts by retyping or re-encoding the math into the journal's required macro or theorem environment.
Handling figures and images
Word stores figures as embedded objects or field references. When you export to .docx, images remain packaged inside the file. Pandoc can extract them to an external media folder, but the output format (usually PNG at screen resolution) will not meet journal requirements of 300 dpi minimum for color figures or 600 dpi for line art.
After conversion, replace Word-generated images with originals at the required resolution and format. Journals prefer vector formats (PDF, EPS) for line art and high-resolution TIFF or PNG for photographs. Verify that every figure caption, label, and cross-reference exists in the .tex source before submission.
Table formatting in LaTeX after Word conversion
Tables are the single most common source of conversion failure. Word's table model (borders, merged cells, nested tables) maps poorly to LaTeX's tabular or tabularx environments. Pandoc-generated tables often use a default plain format that looks nothing like the original and violates journal table style requirements.
Rebuild each complex table by hand in LaTeX, using the journal's prescribed table package. Simple tables with clean borders may survive conversion well enough to reuse; multi-column, multi-row, or landscape tables almost always need manual reconstruction. Booktabs-style tables are the norm for quality journal submission and should be used in preference to Word-grid tables.
Bibliography and citation conversion
If your Word file uses Zotero, Mendeley, or EndNote field codes, you will need to export your reference library as a .bib file before or after conversion. The bibliography section generated by Pandoc will reference placeholder .bib keys; without a corresponding .bib file, citations will appear as question marks or raw keys in the compiled PDF. Export your library in BibTeX format, normalize author names and titles, and replace the Pandoc bibliography block with a \\bibliography command or biblatex setup matching the journal's style.
Many journals require a specific .bst file or CSL style. Confirm which citation engine the journal supports before finalizing the bibliography setup. Running a clean compilation from a fresh directory will catch missing citations and style mismatches.
When manual Word-to-LaTeX conversion fails
If your manuscript has more than 100 equations, more than 20 figures, custom Word styles that map to journal environments, or tracked-changes markup throughout, the time cost of manual conversion can exceed 20 hours. At that point, professional conversion becomes cost-effective. Dynsell converts Word documents to journal-ready LaTeX as a standard service, preserving your equations, figures, bibliography, and table structure while applying the publisher's exact template.
Submit your Word file through our manuscript submission form to receive a fixed quote based on document length and complexity.
Conversion checklist
- Compile the Word document with all fields updated (F9) before exporting to .docx.
- Run Pandoc or your chosen converter with output directed to a clean project folder.
- Replace inline equations by hand or with MathType LaTeX export.
- Re-insert all figures at publication resolution in the journal's accepted format.
- Rebuild tables in the journal's required tabular style.
- Generate and link a .bib file from your reference manager.
- Compile twice and check for undefined references, missing figures, or citation warnings.
- Run the journal's own LaTeX template check or submission system validator if available.