我正在使用rmarkdown
和knitr
我有两个问题:
Q1:我不确定为什么在构建rmarkdown
文档时没有出现数字标题。
这是一个例子。我得到了那个数字,但没有数字标题!
---
title: "Untitled"
author: "XXXX"
date: "9 September 2016"
output: pdf_document
---
## R Markdown
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
![figure1 caption](my photo.png)
Q2:我正在使用RStudio开发一个R-package。我可以使用下面的代码创建html_vignette
。但是,我不确定为什么在将输出更改为output: rmarkdown::pdf_vignette
时无法创建PDF小插图?后者给出了一个错误:
Error: 'pdf_vignette' is not an exported object from 'namespace:rmarkdown'
Execution halted
---
title: "TITLE XXX"
author: "AMT"
date: "`r Sys.Date()`"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{package-intro}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
我是这个领域的新手,所以如果有人可以解释那会很棒。