Создайте несколько определений / теорем для индексов в конце книги - PullRequest
3 голосов
/ 20 сентября 2019

Этот пример кода для создания списка определений работает для меня, но только для одного списка индексов.Всякий раз, когда я пытаюсь добавить другой список (например, для теорем), работает только тот, который был определен последним в нежелательной установке.

Возможно, я неправильно адаптировал knit_hooks$set():

---
title: "Create several lists"
output: bookdown::html_document2
---

```{r setup, include=FALSE}
def_list = list()
knitr::knit_hooks$set(engine = function(before, options, envir) {
    if (before && options$engine == 'definition') {
    # collect definition terms from options$name
    def_list[[options$label]] <<- options$name
    }
    NULL
})

thm_list = list()
knitr::knit_hooks$set(engine = function(before, options) {
    if (before && options$engine == 'theorem') {
    # collect theorem terms from options$name
    thm_list[[options$label]] <<- options$name
    }
    NULL
}) 
```

```{definition, d1, name='Foo: My first definition'}
Foo is defined as ...
```


```{theorem, t1, name='My first theorem'}
First theorem ...
```

```{definition, d2, name='Bar: My second definition'}
Bar is defined as ...
```

```{theorem, t2, name='My second theorem'}
Second theorem ...
```

---

**All definitions:**

```{r echo=FALSE, results='asis'}
def_list = unlist(def_list)
cat(sprintf('- \\@ref(def:%s) %s', names(def_list), def_list), sep = '\n')
```

**All theorems:**

```{r echo=FALSE, results='asis'}
thm_list = unlist(thm_list)
cat(sprintf('- \\@ref(thm:%s) %s', names(thm_list), thm_list), sep = '\n')
```

ВЫХОД:

screenshot of test file for creating several lists

1 Ответ

1 голос
/ 26 сентября 2019

Проблема в том, что вы сбросили ловушку.Таким образом, вместо этого вы должны установить хук один раз для обработки обоих списков, например так:

---
title: "Create several lists"
output: bookdown::html_document2
---

```{r setup, include=FALSE}
def_list = list()
thm_list = list()
knitr::knit_hooks$set(engine = function(before, options) {
    if ( before ) {
        if ( options$engine == "theorem" ) {
            thm_list[[options$label]] <<- options$name
        } else if ( options$engine == "definition" ) {
            def_list[[options$label]] <<- options$name
        }
    }
    NULL
}) 
```

```{definition, d1, name='Foo: My first definition'}
Foo is defined as ...
```


```{theorem, t1, name='My first theorem'}
First theorem ...
```

```{definition, d2, name='Bar: My second definition'}
Bar is defined as ...
```

```{theorem, t2, name='My second theorem'}
Second theorem ...
```

---

**All definitions:**

```{r echo=FALSE, results='asis'}
def_list = unlist(def_list)
cat(sprintf('- \\@ref(def:%s) %s', names(def_list), def_list), sep = '\n')
```

**All theorems:**

```{r echo=FALSE, results='asis'}
thm_list = unlist(thm_list)
cat(sprintf('- \\@ref(thm:%s) %s', names(thm_list), thm_list), sep = '\n')
```

Затем вы получите желаемый результат:

enter image description here

...