fix error
This commit is contained in:
parent
6712bb02c4
commit
200209e2c6
@ -1489,7 +1489,7 @@ numericq(0.1224)
|
|||||||
When ``n=50`` what is the area of the Riemann sum?
|
When ``n=50`` what is the area of the Riemann sum?
|
||||||
|
|
||||||
```julia; hold=true; echo=false
|
```julia; hold=true; echo=false
|
||||||
numericq(0.1887)
|
numericq(0.1187)
|
||||||
```
|
```
|
||||||
|
|
||||||
Using `quadgk` what is the area under the curve?
|
Using `quadgk` what is the area under the curve?
|
||||||
|
@ -1479,7 +1479,7 @@ When $n=50$ what is the area of the Riemann sum?
|
|||||||
```{julia}
|
```{julia}
|
||||||
#| hold: true
|
#| hold: true
|
||||||
#| echo: false
|
#| echo: false
|
||||||
numericq(0.1887)
|
numericq(0.1187)
|
||||||
```
|
```
|
||||||
|
|
||||||
Using `quadgk` what is the area under the curve?
|
Using `quadgk` what is the area under the curve?
|
||||||
|
@ -37,7 +37,8 @@ for DIR ∈ DIRS
|
|||||||
if ext == ".jmd"
|
if ext == ".jmd"
|
||||||
qmd_file = joinpath(DIR, fnm * ".qmd")
|
qmd_file = joinpath(DIR, fnm * ".qmd")
|
||||||
jmd_file = joinpath(dir, f)
|
jmd_file = joinpath(dir, f)
|
||||||
if true || mtime(jmd_file) > mtime(qmd_file)
|
if mtime(jmd_file) > mtime(qmd_file)
|
||||||
|
@show :new, qmd_file
|
||||||
open(qmd_file, "w") do io
|
open(qmd_file, "w") do io
|
||||||
jmd2qmd(io, jmd_file)
|
jmd2qmd(io, jmd_file)
|
||||||
end
|
end
|
||||||
@ -45,8 +46,7 @@ for DIR ∈ DIRS
|
|||||||
else
|
else
|
||||||
_, ext = splitext(f)
|
_, ext = splitext(f)
|
||||||
ext == ".toml" && continue
|
ext == ".toml" && continue
|
||||||
f == "process.jl" && continueg
|
f == "process.jl" && continue
|
||||||
@show :cp, f
|
|
||||||
try
|
try
|
||||||
force = isfile(joinpath(DIR, f))
|
force = isfile(joinpath(DIR, f))
|
||||||
cp(joinpath(dir,f), joinpath(DIR,f), force=force)
|
cp(joinpath(dir,f), joinpath(DIR,f), force=force)
|
||||||
|
Loading…
Reference in New Issue
Block a user