I'm creating a pdf document with papaja and r markdown. when i render my document (apa6_pdf
) it puts the table at the very end of the document. My chunk is in the middle of the document? I read that tables need to go even behind references and before figures, but if i don't want that, can i still change that?
```{r creating table 1, echo=FALSE, results='asis'}
papaja::apa_table(mytable)
```