[Tex/LaTex] How to convert LaTex to word using PanDoc and keep citations as numeral

bibliographiescitingpandoc

I use Pandoc to convert a tex file to docx. I used the following command

pandoc -s foo.tex --bibliography=foo.bib -o foo.docx

But in the output word document, citation are in format of (author date), while I want just a number like [1].

Best Answer

The solution is to use a CSL file to format the citations. I used ieee.csl from https://github.com/citation-style-language/styles

pandoc -s foo.tex --bibliography=foo.bib --csl=ieee.csl -o foo.docx