Reputation: 75
Probably a basic question but I can't see how to knit my RMarkdown document into a Word document. I've checked the various ReadMe's e.g. https://crsh.github.io/papaja_man/ but can't see anywhere where it is spelled out. Any help is appreciated.
Upvotes: 1
Views: 1910
Reputation: 1716
If you are looking to produce a Word document in APA style using papaja
you can change the default output specified in the YAML front matter to the following:
---
output: apa6_docx
---
This is also mentioned in the package manual.
Upvotes: 4
Reputation: 32
I believe you have to specify it in your yaml header as such:
---
title: TITLE
author: AUTHOR
output: word_document
---
Also, the manual does note that there functions won't work when converting into word.
Upvotes: 1