将标题拆分成多行?

Split the title onto multiple lines?

在 R markdown 文档(html 和演示文稿)中,是否可以手动将标题拆分为多行?我尝试使用产生可怕输出的管道。

---
title:  'A title I want to split on two lines'
author: 
date: 
output:
  ioslides_presentation
---

对于 HTML 输出只使用 <br> 标签,而如果您的输出是 PDF 或 PDF 演示文稿,\ 给出的断行标准 LaTeX 代码应该可以工作。

例子

---
title:  'A title I want to <br> split on two lines'
author: 
date: 
output:
  ioslides_presentation
---

对于 PDF

只是为了排除可能性,我试过把\\newline都不要拆分,所以对于PDF来说似乎有点棘手。 \linebreak 停止 knitr 解析。也许其他用户可以解决 knitr PDF 的这个问题。

对于 PDF 输出,实验显示以下工作:

---
title:  'A title I want to  \nsplit on two lines'
author: 
date: 
output: pdf_document
---

也就是两个空格后跟\n.

添加抽象的示例展示了管道的使用 |换行并包含段落。这也适用于标题和其他 yaml 元素。对于摘要或标题:

---
abstract: |
    What works for the abstract.

    Works for the title, too!
title: |
    | title 
    | subtitle
output: pdf_document 
---