My main propose of using pandoc is to make word documents from latex files, so I share them with my colleagues for review. I am new in pandoc, so I used a straightforward example. I used pandoc to create a docx file form a simple Latex tex file, which had a simple one citation. The docx file is created successfully, However, when I wanted to reverse the process and create a Latex file from the newly created docx file. The citations are copied in the newly tex file just as simple text, without any citation command in latex. Is there any way you can transfer citations from docx file to latex file, and store them is some kind bib file through panndoc?
-s input.tex --bibliography=b.bib -o output.docx
-s output.docx --bibliography=b.bib -o input.tex