在 R Markdown 文档的 YAML 部分的摘要中编辑项目符号点间距?
Editing spacing of bullet points in abstract of the YAML portion of an R Markdown document?
如何让所有这些要点在我的 R Markdown 文档的摘要中排列?我已经尝试了很多空格、制表符、换行符等的排列,以至于我的头在旋转。必须有一个简单的方法。
---
title: "Untitled"
author: "Me"
date: "Tuesday, June 16, 2015"
output:
pdf_document:
toc: true
number_section: true
abstract: |
* Foo
* Bar
* Baz
---
# My first section #
hello
如果您不使用 space 分隔列表项,Pandoc 将引入 \tightlist
环境。当在 * 之间保持 space 时,您可以避免这种情况并简单地得到 \begin{itemize} ...
。此外,抽象的第一行总是在 LATEX 中缩进,这是标准的预期行为。使用 \noindent
删除缩进。
---
title: "Untitled"
author: "Me"
date: "Tuesday, June 16, 2015"
output:
pdf_document:
keep_tex: true
toc: true
number_section: true
abstract: |
\noindent
* Foo
* Bar
* Baz
---
# My first section #
hello
如何让所有这些要点在我的 R Markdown 文档的摘要中排列?我已经尝试了很多空格、制表符、换行符等的排列,以至于我的头在旋转。必须有一个简单的方法。
---
title: "Untitled"
author: "Me"
date: "Tuesday, June 16, 2015"
output:
pdf_document:
toc: true
number_section: true
abstract: |
* Foo
* Bar
* Baz
---
# My first section #
hello
如果您不使用 space 分隔列表项,Pandoc 将引入 \tightlist
环境。当在 * 之间保持 space 时,您可以避免这种情况并简单地得到 \begin{itemize} ...
。此外,抽象的第一行总是在 LATEX 中缩进,这是标准的预期行为。使用 \noindent
删除缩进。
---
title: "Untitled"
author: "Me"
date: "Tuesday, June 16, 2015"
output:
pdf_document:
keep_tex: true
toc: true
number_section: true
abstract: |
\noindent
* Foo
* Bar
* Baz
---
# My first section #
hello