我一直试图写一个包含一些定理的bookdown
文档。根据已经定义的手动定理,但是,我得到了
'定理'不被识别为内部或外部命令, 可操作的程序或批处理文件。
我尝试安装knit
的最新版本,并从头开始重新安装所有内容。
title: 'Chapter 1: Vectors'
author: "Ibrahim Inal"
date: "31/07/2019"
output: html_document
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Vector operations
```{theorem}
$A\dotB$
````
```{definition}
For given vectors $A=(a_1,\dots ,a_n)$ and $B=(b_1, \dots, b_n)$, we define
$$
A+B=(a_1+b_1,\dots,a_n+b_n)\quad\text{and}\quad cA=(ca_1,\dots,ca_n)
$$
```
我希望输出将是通常的定理结构。相反,我得到了错误:
'定理'不被识别为内部或外部命令, 可操作的程序或批处理文件。