-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
55 lines (35 loc) · 1.26 KB
/
index.Rmd
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
52
53
---
title: "ReadingNotes: Have you read today's papers?"
author: "Rongting Huang rthuang@connect.hku.hk"
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]
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.
# About the author {-}
![1](./figs/Rongting/IMG-5393.jpg)
![2](./figs/Rongting/IMG-6316.PNG)
![3](./figs/Rongting/IMG-7418.JPG)
![Keep moving](./figs/Rongting/IMG-8010.JPG)
# Research topics {-}
# 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")
```