-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.Rmd
42 lines (35 loc) · 983 Bytes
/
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
---
title: "Python3学习教程"
author:
- "易生信培训团队"
- "联系我们: [email protected]"
- "抱歉,转成PDF后部分格式问题还未解决,会继续更新调整"
date: "`r Sys.Date()`"
documentclass: article
site: bookdown::bookdown_site
---
```{r setup, include=FALSE}
library(knitr)
output <- opts_knit$get("rmarkdown.pandoc.to")
html = FALSE
latex = FALSE
opts_chunk$set(echo = FALSE, out.width="100%", fig.align="center", fig.show="hold", warning=FALSE, message=TRUE)
if (output=="html") {
html = TRUE
}
if (output=="latex") {
opts_chunk$set(out.width="95%", out.height='0.7\\textheight', out.extra='keepaspectratio', fig.pos='H')
latex = TRUE
}
knitr::opts_chunk$set(cache=TRUE, autodep=TRUE)
mtime <- function(files){
lapply(Sys.glob(files), function(x) file.info(x)$mtime)
}
set.seed(0304)
```
```{asis, echo=html}
# EHBIO Gene Technology {-}
```
```{r cover, echo=F, eval=html, out.width="99%"}
knitr::include_graphics("ehbio/cover.png")
```