build locally, not with CI
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Replacing the calculator with a computer
|
||||
# From calculator to computer
|
||||
|
||||
|
||||
```julia; echo=false;
|
||||
@@ -6,7 +6,7 @@ using CalculusWithJulia
|
||||
using CalculusWithJulia.WeaveSupport
|
||||
|
||||
const frontmatter = (
|
||||
title = "Replacing the calculator with a computer",
|
||||
title = "From calculator to computer",
|
||||
description = "Calculus with Julia: Replacing the calculator with a computer",
|
||||
tags = ["CalculusWithJulia", "precalc", "replacing the calculator with a computer"],
|
||||
);
|
||||
@@ -14,6 +14,7 @@ const frontmatter = (
|
||||
nothing
|
||||
```
|
||||
|
||||
|
||||
Let us consider a basic calculator with buttons to add, subtract,
|
||||
multiply, divide, and take square roots. Using such a simple thing is
|
||||
certainly familiar for any reader of these notes. Indeed, a
|
||||
@@ -934,6 +935,21 @@ val = sind(52)
|
||||
numericq(val)
|
||||
```
|
||||
|
||||
###### Question
|
||||
|
||||
What is the value of
|
||||
|
||||
```math
|
||||
\frac{sin(pi/3) - 1/2}{pi/3 - pi/6}
|
||||
```
|
||||
|
||||
```julia; hold=true; echo=false;
|
||||
val = (sin(pi/3) - 1/2)/(pi/3 - pi/6)
|
||||
numericq(val)
|
||||
```
|
||||
|
||||
|
||||
|
||||
###### Question
|
||||
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
This section will use the following packages:
|
||||
|
||||
|
||||
```julia
|
||||
using CalculusWithJulia
|
||||
using Plots
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
using WeavePynb
|
||||
using Mustache
|
||||
|
||||
mmd(fname) = mmd_to_html(fname, BRAND_HREF="../toc.html", BRAND_NAME="Calculus with Julia")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
11
CwJ/test.jmd
11
CwJ/test.jmd
@@ -1,11 +0,0 @@
|
||||
---
|
||||
title: Test
|
||||
author: Chris Rackauckas
|
||||
---
|
||||
|
||||
This is a test of the builder system.
|
||||
|
||||
```{julia; echo=false; skip="notebook"}
|
||||
using CalculusWithJulia
|
||||
CalculusWithJulia.WeaveSupport._footer(WEAVE_ARGS[:folder],WEAVE_ARGS[:file])
|
||||
```
|
||||
Reference in New Issue
Block a user