How to efficiently convert Latex files to word documents
Here there,
I'm going to share a very simple shortcut for converting Latex files to word documents to those you who are using windows. I learned this trick from a friend of (M.Aslani) few weeks back. All you need to do is just open up your CMD and go the directory which you are keeping your tex files. Then try these following commands:
> pandoc -s -S file.tex -o file.docx
and in case you are having a bibliography in your tex file:
>pandoc -s -S file.tex --bibliography=sample.bib -o file.docx
That's All,