23 lines
318 B
Plaintext
23 lines
318 B
Plaintext
---
|
|
title: "项目报告"
|
|
subtitle: "关于...的研究项目"
|
|
date: today
|
|
---
|
|
|
|
```{r}
|
|
#| include: false
|
|
|
|
require(drwateR)
|
|
require(rmdify)
|
|
rmdify::rmd_init()
|
|
```
|
|
|
|
```{r}
|
|
#| output: asis
|
|
dir(here::here("RP/"), pattern = "_") |>
|
|
purrr::map(~paste0("## [", .x, "](", .x, "/index.qmd)\n\n")) |>
|
|
unlist() |>
|
|
cat()
|
|
|
|
```
|