2017-04-05 11 views
2

안녕하세요.빈 줄을 단어 출력에 추가 RMarkdown

워드 문서로 내보내는 rmarkdown 파일을 사용하여 컨퍼런스 추상 제출을 만들려고합니다. 출력 된 단어 문서에 빈 줄을 삽입하는 방법을 찾으려고합니다. 나는 줄 바꿈이 markdown 파일의 끝 부분에 두 개의 공백을 추가하여 삽입 될 수 있다는 것을 발견했다. 그러나 단순히 공백 줄을 원할 때이 트릭이 작동하지 않는다. 아래는 예제 코드입니다

--- 
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: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 


*Coauthor #2* 
Name: Kathy S. James 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

*Coauthor #3* 
Name: Patrick S. Curry 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 


## Introduction 
Here is where I write my introduction.... 

## Methods 
Here is where I write my methods 

## Results 
Here is where I write my results... 

## Discussion 
Here is where I write my discussion 

슬프게도 문서가 뜨거울 때 슬프게도 조금 있습니다. 아래에서는 현재 출력 (왼쪽)과 내가 닮았 으면하는 사진 (오른쪽)을 추가했습니다. Desired Output

나는 포럼을 통해 읽었으며 워드 문서를 사용할 때 아직 해결책을 찾지 못했습니다. 어떤 제안이라도 고맙게 생각합니다.

는 다음과 같이

답변

5

는 RMD 파일에 \newline을 사용할 수 있습니다 감사합니다 다음에 물어가는 경우

--- 
title: "HERE IS THE TITLE OF MY ABSTRACT" 
output: 
    word_document 
--- 

```{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 

\newline 

*Presenting author information* 
    Name: John H. Curry 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

\newline 

*Coauthor #2* 
Name: Kathy S. James 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

\newline 

*Coauthor #3* 
Name: Patrick S. Curry 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

\newline 

## Introduction 
Here is where I write my introduction.... 

\newline 

## Methods 
Here is where I write my methods 

\newline 

## Results 
Here is where I write my results... 

\newline 

## Discussion 
Here is where I write my discussion 

, NEWPAGE 약간 어렵습니다. 새 페이지에서 자동 시작되는 제목 5의 단어로 새 스타일을 만들어야하며 Rmd 파일에서 제목 5를 새 줄로 사용합니다. 비록 이것에 관해서는 꽤 많은 온라인 자원이 있습니다.

+0

이것은 완벽합니다. \ newline과 라인의 끝에 이중 공백을 추가하여 원하는 출력을 얻을 수있었습니다. 관심있는 사람들을 위해 내가 찾던 결과를 준 코드를 게시했습니다. –

1

chinsoon12이 (가) 저에게 답을주었습니다. 다음은 원하는 출력을 얻는 데 사용한 코드입니다. 나는 \ newline \ newline (한 번만 쓰는 것이 아니라)을 써야한다는 이상한 점을 발견했다. 또한 코드 행 끝에 \ newline을 추가하여 동일한 효과를 얻을 수도 없었습니다. .rmd 파일이 작동하려면 줄 바꿈이 있어야합니다 (최소한 시도한 것부터).

--- 
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^ 

\newline 

Affiliations: ^1^University of Michigan 

\newline \newline 

*Presenting author information* 
Name: John H. Curry 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

\newline \newline 

*Coauthor #2* 
Name: Kathy S. James 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

\newline \newline 

*Coauthor #3* 
Name: Patrick S. Curry 
Email: [email protected] 
Affiliation details: Kinesiology, University of Somewhere, Ottawa, Canada 

\newline \newline 

## Introduction 
Here is where I write my introduction.... 

\newline \newline 

## Methods 
Here is where I write my methods 

\newline \newline 


## Results 
Here is where I write my results... 

\newline \newline 

## Discussion 
Here is where I write my discussion 

\newline \newline