You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,23 @@ To see computations used in the background, go to the `math/` directory.
94
94
From there, you can run the `.sage` files in a SageMath environment.
95
95
In particular, the `math/field.sage` computes roots of unity in the `PlutoField` which is of size 101. To install sage on your machine, follow the instructions [here](https://doc.sagemath.org/html/en/installation/index.html). If you are on a Mac, you can install it via homebrew with `brew install --cask sage`.
96
96
97
+
## Building mdBook
98
+
99
+
To locally build/serve the [mdBook](https://github.com/rust-lang/mdBook) site, install mdBook and [mdbook-katex](https://github.com/lzanini/mdbook-katex):
100
+
```
101
+
cargo install mdbook
102
+
cargo install mdbook-katex
103
+
```
104
+
105
+
To build, run:
106
+
```
107
+
cargo run --bin create_mdbook
108
+
cp -r assets book/
109
+
mdbook build
110
+
```
111
+
112
+
If you want to serve locally, run `mdbook serve`.
113
+
97
114
## License
98
115
99
116
Licensed under the Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
0 commit comments