2024-07-02 22:16:39 +02:00
|
|
|
version: "0.21"
|
2024-04-27 00:26:12 +02:00
|
|
|
engine: julia
|
2022-07-24 22:38:24 +02:00
|
|
|
|
|
|
|
project:
|
|
|
|
type: book
|
|
|
|
|
|
|
|
comments:
|
|
|
|
hypothesis: true
|
|
|
|
|
|
|
|
book:
|
|
|
|
title: "Calculus with Julia"
|
|
|
|
author: "John Verzani"
|
2022-07-25 18:54:32 +02:00
|
|
|
date: now
|
2022-07-24 22:38:24 +02:00
|
|
|
search: true
|
|
|
|
repo-url: https://github.com/jverzani/CalculusWithJuliaNotes.jl
|
2022-07-25 18:54:32 +02:00
|
|
|
repo-subdir: quarto/
|
2022-10-10 20:28:05 +02:00
|
|
|
downloads: [pdf]
|
2022-07-25 18:54:32 +02:00
|
|
|
repo-actions: [edit, issue]
|
2022-07-24 22:38:24 +02:00
|
|
|
navbar:
|
|
|
|
background: light
|
|
|
|
search: true
|
|
|
|
logo: logo.png
|
2022-07-25 18:54:32 +02:00
|
|
|
pinned: false
|
|
|
|
sidebar:
|
|
|
|
collapse-level: 1
|
2024-07-02 22:16:39 +02:00
|
|
|
page-footer: "Copyright 2022-24, John Verzani"
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- index.qmd
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: precalc.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- precalc/calculator.qmd
|
|
|
|
- precalc/variables.qmd
|
|
|
|
- precalc/numbers_types.qmd
|
|
|
|
- precalc/logical_expressions.qmd
|
|
|
|
- precalc/vectors.qmd
|
|
|
|
- precalc/ranges.qmd
|
|
|
|
- precalc/functions.qmd
|
|
|
|
- precalc/plotting.qmd
|
|
|
|
- precalc/transformations.qmd
|
|
|
|
- precalc/inversefunctions.qmd
|
|
|
|
- precalc/polynomial.qmd
|
|
|
|
- precalc/polynomial_roots.qmd
|
|
|
|
- precalc/polynomials_package.qmd
|
|
|
|
- precalc/rational_functions.qmd
|
|
|
|
- precalc/exp_log_functions.qmd
|
|
|
|
- precalc/trig_functions.qmd
|
|
|
|
- precalc/julia_overview.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: limits.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- limits/limits.qmd
|
|
|
|
- limits/limits_extensions.qmd
|
|
|
|
- limits/continuity.qmd
|
|
|
|
- limits/intermediate_value_theorem.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: derivatives.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- derivatives/derivatives.qmd
|
|
|
|
- derivatives/numeric_derivatives.qmd
|
|
|
|
- derivatives/symbolic_derivatives.qmd
|
|
|
|
- derivatives/mean_value_theorem.qmd
|
|
|
|
- derivatives/optimization.qmd
|
|
|
|
- derivatives/first_second_derivatives.qmd
|
|
|
|
- derivatives/curve_sketching.qmd
|
|
|
|
- derivatives/linearization.qmd
|
|
|
|
- derivatives/newtons_method.qmd
|
|
|
|
- derivatives/more_zeros.qmd
|
|
|
|
- derivatives/lhospitals_rule.qmd
|
|
|
|
- derivatives/implicit_differentiation.qmd
|
|
|
|
- derivatives/related_rates.qmd
|
|
|
|
- derivatives/taylor_series_polynomials.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: integrals.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- integrals/area.qmd
|
|
|
|
- integrals/ftc.qmd
|
|
|
|
- integrals/substitution.qmd
|
|
|
|
- integrals/integration_by_parts.qmd
|
|
|
|
- integrals/partial_fractions.qmd
|
|
|
|
- integrals/improper_integrals.qmd
|
|
|
|
- integrals/mean_value_theorem.qmd
|
|
|
|
- integrals/area_between_curves.qmd
|
|
|
|
- integrals/center_of_mass.qmd
|
|
|
|
- integrals/volumes_slice.qmd
|
|
|
|
- integrals/arc_length.qmd
|
|
|
|
- integrals/surface_area.qmd
|
2024-05-22 02:58:53 +02:00
|
|
|
- integrals/twelve-qs.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: ODEs.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- ODEs/odes.qmd
|
|
|
|
- ODEs/euler.qmd
|
|
|
|
- ODEs/solve.qmd
|
|
|
|
- ODEs/differential_equations.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: differentiable_vector_calculus.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- differentiable_vector_calculus/polar_coordinates.qmd
|
|
|
|
- differentiable_vector_calculus/vectors.qmd
|
|
|
|
- differentiable_vector_calculus/vector_valued_functions.qmd
|
|
|
|
- differentiable_vector_calculus/scalar_functions.qmd
|
|
|
|
- differentiable_vector_calculus/scalar_functions_applications.qmd
|
|
|
|
- differentiable_vector_calculus/vector_fields.qmd
|
|
|
|
- differentiable_vector_calculus/plots_plotting.qmd
|
|
|
|
|
2022-08-27 00:21:54 +02:00
|
|
|
- part: integral_vector_calculus.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
|
|
|
- integral_vector_calculus/double_triple_integrals.qmd
|
|
|
|
- integral_vector_calculus/line_integrals.qmd
|
|
|
|
- integral_vector_calculus/div_grad_curl.qmd
|
|
|
|
- integral_vector_calculus/stokes_theorem.qmd
|
|
|
|
- integral_vector_calculus/review.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
|
2022-08-26 20:15:09 +02:00
|
|
|
- part: alternatives.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
chapters:
|
2022-08-17 21:46:14 +02:00
|
|
|
- alternatives/symbolics.qmd
|
2022-08-26 20:15:09 +02:00
|
|
|
- alternatives/SciML.qmd
|
2022-07-25 01:03:28 +02:00
|
|
|
# - alternatives/interval_arithmetic.qmd
|
2022-07-24 22:38:24 +02:00
|
|
|
- alternatives/plotly_plotting.qmd
|
2022-08-11 16:32:28 +02:00
|
|
|
- alternatives/makie_plotting.qmd
|
|
|
|
|
2022-07-24 22:38:24 +02:00
|
|
|
- part: "Appendices"
|
|
|
|
chapters:
|
|
|
|
- misc/getting_started_with_julia.qmd
|
|
|
|
- misc/julia_interfaces.qmd
|
|
|
|
- misc/calculus_with_julia.qmd
|
|
|
|
- misc/unicode.qmd
|
|
|
|
- misc/quick_notes.qmd
|
|
|
|
# - misc/bibliography.qmd
|
|
|
|
- references.qmd
|
|
|
|
|
2023-07-19 00:01:25 +02:00
|
|
|
execute-dir: project
|
|
|
|
|
2022-07-24 22:38:24 +02:00
|
|
|
bibliography: references.bib
|
|
|
|
|
|
|
|
website:
|
|
|
|
favicon: logo.png
|
|
|
|
|
|
|
|
format:
|
|
|
|
html:
|
2024-07-31 17:24:53 +02:00
|
|
|
theme:
|
|
|
|
light: lux # spacelab # lux # sketchy # cosmo # https://quarto.org/docs/output-formats/html-themes.html
|
|
|
|
dark: darkly
|
2022-07-24 22:38:24 +02:00
|
|
|
number-depth: 3
|
|
|
|
toc-depth: 3
|
|
|
|
link-external-newwindow: true
|
2022-11-02 19:53:53 +01:00
|
|
|
# pdf:
|
|
|
|
# documentclass: scrbook
|
|
|
|
# classoption: [oneside]
|
|
|
|
# keep-tex: true
|
|
|
|
# geometry:
|
|
|
|
# - top=30mm
|
|
|
|
# - left=10mm
|
|
|
|
# - right=10mm
|
|
|
|
# - heightrounded
|
|
|
|
# colorlinks: true
|
2022-07-24 22:38:24 +02:00
|
|
|
|
|
|
|
execute:
|
2024-04-27 00:26:12 +02:00
|
|
|
error: false
|
2024-06-07 19:07:09 +02:00
|
|
|
# freeze: false
|
2022-09-14 20:45:30 +02:00
|
|
|
freeze: auto
|