Good afternoon.
I am trying to create a conference abstract using the rmarkdown file, which is exported to a text document. I am trying to find a way to insert a blank line in an output word document. I found that a line break can be inserted by adding two spaces at the end of the markdown file, however this technique does not work when you just need an empty line. Below is a sample code
---
title: "HERE IS THE TITLE OF MY ABSTRACT"
output:
word_document:
reference_docx: draft-styles.docx
---
'''{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
'''
'''{r, include=FALSE, cache=FALSE, echo=FALSE}
library(rmarkdown)
'''
Authors: John H. Curry^1^, Kathy S. James^1^, Patrick S. Curry^1^
Affiliations: ^1^University of Somewhere
*Presenting author information*
Name: John H. Curry
Email: curry@umed.edu
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada
*Coauthor
Name: Kathy S. James
Email: james@umed.edu
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada
*Coauthor
Name: Patrick S. Curry
Email: curry2@umed.edu
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada
Here is where I write my introduction....
Here is where I write my methods
Here is where I write my results...
Here is where I write my discussion
When I knit a document, unfortunately, it is a little grouped. Below I added a picture with the current output (left) and how I would like it to look (right).
I read the forums and I have yet to find a solution for this when using a text document. I would be grateful for any suggestions.
thank