1

There is tool called GrindEq for converting Latex document into MS word format, it work good if references are added using "Bibitem", but if references are inserted using "Bibtex" database, then references do not appear in MS word format. How can we proceed with conversion Latex to MS word if references in Latex document are added using bibtex?

Romain Picot
  • 6,730
  • 4
  • 28
  • 58
IgotiT
  • 453

1 Answers1

6

I don't have GrindEq nor MS Word, but in the compilation of your TeX document a .bbl file is created (after the typical compile-a-few-times steps). This is actually the file which BibTeX converted the database into properly formatted \bibitems.

You can make a copy of your TeX file, and in this copy, instead of using the line \bibliography{...}, copy paste the contents of the .bbl file. This way, the new file contains the \bibitems directly, so it is independent of BibTeX.

percusse
  • 157,807
yo'
  • 51,322