-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
53 lines (35 loc) · 1.36 KB
/
index.Rmd
File metadata and controls
53 lines (35 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
title: "ReadingNotes: Have you read today's papers?"
author: "Rongting Huang rthuang@connect.hku.hk rthuang@stanford.edu"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: [book.bib, singelcell.bib, packages.bib, sources.bib, tech.bib, pubmon.bib, topic_based.bib, datasets.bib, biology.bib]
biblio-style: apalike
link-citations: yes
description: "This is a minimal example of using the bookdown package to write a book. The output format for this example is bookdown::gitbook."
---
# Preface {-}
This book is for Rongting's daily reading notes.
<a href="https://rongtingting.github.io/" style="text-decoration:none;">Back to Home Page</a>
# About the author {-}




# About the book {-}
```{r eval=FALSE, include=FALSE}
install.packages("bookdown")
# or the development version
# devtools::install_github("rstudio/bookdown")
```
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```
**Note**: to build this book, use the following script in R and follow the [bookdown mannual](https://bookdown.org/yihui/bookdown/):
```
bookdown::render_book("index.Rmd", "bookdown::gitbook")
```