edits, add dark mode

This commit is contained in:
jverzani
2024-07-31 11:24:53 -04:00
parent f1e7895946
commit c3998bc835
12 changed files with 128 additions and 94 deletions

View File

@@ -40,7 +40,11 @@ tangent(f, c) = x -> f(c) + f'(c) * (x - c)
(Recall, the `->` indicates that an anonymous function is being generated.)
This function along with the `f'` notation for automatic derivatives is defined in the `CalculusWithJulia` package.
This function along with the `f'` notation for automatic derivatives is defined in the `CalculusWithJulia` package, though a bit differently:
```{julia}
tangent(sin, pi/4)
```
We make some graphs with tangent lines: