Free substitute for Word2Tex on Windows

I tried different commercial and free converters. All have there advantages and disadvantages but in the end I settled for the very nice docx2tex.

There were some troubles when the docx-file contains a mix of different fonts but other than that the output is reasonably good. With a bit of manual work I converted a 70 page thesis but have not tried the mathematical part much.

If you want commercial support there are also Word-to-Latex (www.grindeq.com) and another product under the same name Word-to-Latex (www.wordtolatex.com). Both have a free trial version.

For all tools you want to have a nicely structured Word document to start with. No converter can guess the structure of the document if sections are just formatted in bold, etc.


Another solution for converting docx to TeX that I use, is to load the Word-file into LibreOffice and export it to LaTeX with the help of Writer2LaTeX. The new version 1.4 has lot of options for tinkering with the export filter.

Of course this assumes your Word-file can be converted to (or opened in) LibreOffice without lots of errors. The import filter in later versions version > 3.5.x is much better than before, but the docx-format is said to be complex and with some dark corners.

EDIT: If you are not able to, or willing to, install LibreOffice, in newer versions of Office (> 2010) you may in Word save the file as an .odt-file. Then you can use the command line facility of Writer2Latex to convert the .odt-file to LaTeX-format. See pages 13 ff. in the Wrtier2LaTeX-manual.


In my experience Pandoc does a decent job of converting from MS Word 2016 files (.docx) to LaTeX. After installation on OSX El Capitan, I ran the following command to convert my MS Word file:

pandoc -f docx -t latex -o out.tex in.docx

Granted you'll still have to make some edits to match the original, but it is way better than starting afresh and it's free. Also, it supports OSX, Windows and Linux.