[Tex/LaTex] Partial compile latex and bibtex for pandoc

bibtexlatex-to-wordpandoc

I am working to convert a LaTeX document to word (because that's what the journal requires) and to avoid rewritting all of the equations and citations I want to use pandoc, but pandoc doesn't seem to handle the bibliography correctly. Is there a way to partially compile a latex file such that the bibliograpy is put at the bottom with bibitem labels? I would love it if I could easily get the dmath sections replaced with equation arrays as well.

Best Answer

Andrew's suggestion to look at latex-to-word again helped me get it all working. I didn't find a way to do a partial compile. But in the previous question there is a bulleted list of things to check when using pandoc.

I first had to also install pandoc-citeproc in order to handle the bibtex citations and to download the *.csl file for the corresponding *.bst from this site.

Then I simply replaced all of the dmath equations with equation (and it works reasonably well) and removed any characters that don't work with pandoc from the equations. In my case it was \bm \\ and I also had to replace TeX \defs with \newcommands.

I also removed all the figures and tables, since the journal doesn't want them in the word document anyways.

The command I then used to execute was:

pandoc -o word.docx --bibliography trimmed.bib --csl elsarticle-harv.csl original.tex