在Rmarkdown中将标题分为两行以输出单词

时间:2018-07-27 13:32:47

标签: ms-word r-markdown

我已经看到了各种解决方案,这些解决方案可用于pdf和HTML文档输出。但是,没有一个对我有用。如此处建议的那样使用|时:Split the title onto multiple lines?只是使整个标题消失了。这是代码:

---  
title: |
    | Supporting Information
    | Development and mechanistic bla bla.
author: Some people
output:
  word_document:
    reference_docx: ACS SI style for RMD.docx
mainfont: Arial
---
<style>
body {
text-align: justify}
 p {line-height: 1.5em;}
</style>

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:4)

|管道不能与单词一起使用。将标题设置为""。对于标题的换行并输出到单词,我们可以使用:

  \n

重要:以两个空格开头!)。

---  
title: "Supporting Information  \nDevelopment and mechanistic bla bla."
author: Some people
output: word_document
---

屈服

enter image description here

空行

要实现标题词中的空行,需要这些行中的“内容”,因此我们可以在换行代码后设置一个不间断的空格:

  \n &nbsp;

(再次重要: \n,两个空格开头!)。

---  
title: "Supporting Information  \n &nbsp;  \n Development and mechanistic bla bla."
author: Some people
output: word_document
---

屈服

enter image description here