Using pandoc -o file.docx file.tex it returns a Word document without code, citation, and also the caption of the figures.
P.S. Regarding the citation my bibliography is included in the latex document as
\begin{thebibliography}
\bibitem{}{}
\end{thebibliography}
Is there a way to convert the to Word format keeping the code cells, citations and caption?
pandoc-citeproc, which needs the bibliography as a special file, e.g..bib– DG' Aug 10 '20 at 21:01\begin{thebibliography} \bibitem{}{} \end{thebibliography}inside another file? – walid Aug 10 '20 at 21:42.bib-file. Maybe you can use bbl2bib.pl. You should look into tex4ht as an alternative. – DG' Aug 10 '20 at 22:49thebibliographyis notbiblatex(and not compatible withbiblatexeither) I have removed thebiblatextag and replaced it with the more generic 'bibliographies'. – moewe Aug 11 '20 at 05:18.bibfile, how can I usepandoc-citeprocto show up citation? – walid Aug 13 '20 at 14:03pandoc --bibliography file.bib --filter pandoc-citeproc -o file.docx file.tex– DG' Aug 13 '20 at 14:43--csl file.csl. This is all very well documented in pandoc's manual: https://pandoc.org/MANUAL.html#citations – DG' Aug 13 '20 at 20:22