0

So I'm following the example here pandoc latex to rtf - No link colors

pandoc main.tex -f latex -s -o test.rtf --bibliography main.bib

main.tex

\documentclass{article} \usepackage{graphicx} % Required for inserting images \begin{document} \section{Introduction} Consider the \cite{berger2000}. \bibliographystyle{plain} \bibliography{main} \end{document} 

main.bib

@article{berger2000, title={Hoard: A scalable memory allocator for multithreaded applications}, author={Berger, Emery D and McKinley, Kathryn S and Blumofe, Robert D and Wilson, Paul R}, journal={ACM Sigplan Notices}, volume={35}, number={11}, pages={117--128}, year={2000}, publisher={ACM New York, NY, USA} } 

pdflatex works fine. Actually just getting [?] where a reference should be would be okay for my purposes as I only need rtf to grammar check.

2
  • Convert to docx and then convert it to RTF with other means? Commented Feb 22 at 21:30
  • @OlegLobachev pdf to docx distorts the document which introduces a bunch of errors that don't exist in the pdf Commented Feb 22 at 21:46

1 Answer 1

2
 pandoc -s --citeproc -f latex -t rtf main.tex -o test.rtf 

mwe

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.