Sto usando RStudio per scrivere documenti di markdown e desidero aggiungere il sommario (TOC) all'inizio dei documenti in modo che l'utente possa fare clic sulla sezione pertinente per la lettura. C'erano alcuni esempi rilevanti su rpubs ma ora non riesco a trovarli. Tieni presente che non uso pandoc
e sono abbastanza nuovo per Rmd
& knitr
. C'è un modo per aggiungere sommari senza utilizzarli pandoc
? Se usare pandoc
is must allora quali funzioni sono rilevanti?
MODIFICARE
Ecco una piccola pagina di esempio:
---
title: "Sample Document"
output:
html_document:
toc: true
theme: united
---
Header 1
---------------
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
## Header 2
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:
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r, echo=FALSE}
plot(cars)
```
### Header 3
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
Ho provato a eseguirlo in RStudio v 0.98.864 e ha funzionato! ma purtroppo non ha funzionato su 0.98.501 e 0.98.507. Sto lavorando alla mia tesi in 0.98.501 e dopo aver aggiornato RStudio, alcune delle mie analisi non hanno funzionato. Quindi, sono tornato a 0.98.501. Cosa dovrei fare ora? Voglio davvero i TOC ma senza danneggiare i risultati di altre analisi.
toc: true
nel frontespizio YAML dovrebbe farlo.