我即将在R Markdown中撰写我的硕士论文,当我编写pdf时,有一个标准的标题,一个人在LaTeX中用' \ maketitle'。 autor,标题和名称。相当丑陋。 我不知道如何删除... 谢谢!
答案 0 :(得分:1)
您可以通过多种方式修改YAML header。请阅读RStudio的RMarkdown页面中的PDF Documents部分。
首次创建.rmd文件时,这是默认的YAML标头:
---
title: "Default_YAML"
author: "Daffy Duck"
date: "2/17/2018"
output: pdf_document
---
# Header
Some text.
```{r}
df <- read.csv( file = "somefilepath.csv" )
```
只需从YAML标题中删除您不喜欢的内容。
# Header
Some text.
```{r}
df <- read.csv( file = "somefilepath.csv" )
```