1

I'm writing an essay on APA template using papaja package in Rstudio. When I finished editing the short title and knit it for pdf to have a look. The "Running head" of "Running head: Short Title" still remain in the top like this.

enter image description here

Is the "running head" text a part of the APA template? How could I remove it?

I want to get rid of the "running head" text in the red box. So in the final edition there will be no "running head" text in the "running head" part. There will only be the short title in it.

Phil
  • 7,287
  • 3
  • 36
  • 66
CodeRabbit
  • 11
  • 3
  • Please consider making this question reproducible – r2evans Nov 03 '22 at 20:38
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Nov 04 '22 at 00:22

1 Answers1

0

Look for the file apa6_man.docx in this folder -- \papaja\rmarkdown\templates\apa6\resources

Open it and replace the text "Running head: TITLE" in the header with a space.

  • While this works, it doesn't quite fit the question, because this will remove the header entirely. If you just get rid of `Running head: ` and keep `TITLE` it should work as intended. Also, I wouldn't recommend editing the package resources. Rather you should copy the file to the project directory and specify it as `reference_docx` in the YAML front matter. – crsh Nov 15 '22 at 23:02