1
0
Fork 0
mathematics-physics-wiki/config/en/mkdocs.yaml

140 lines
5.2 KiB
YAML
Raw Normal View History

2023-10-23 13:33:35 +02:00
site_name: My notes
docs_dir: '../../docs/en'
theme:
name: material
features:
- navigation.instant
- navigation.tabs
2024-01-03 13:39:36 +01:00
- navigation.indexes
2023-10-23 13:33:35 +02:00
- toc.follow
palette:
2023-12-09 21:38:01 +01:00
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
2023-12-07 21:55:58 +01:00
primary: black
2023-10-23 13:33:35 +02:00
accent: teal
2023-12-09 21:38:01 +01:00
toggle:
icon: material/brightness-3
name: Switch to light mode
2023-10-23 13:33:35 +02:00
language: en
extra:
generator: false
alternate:
- name: English
link: /en/
lang: en
- name: Nederlands
link: /nl/
lang: nl
plugins:
- search:
2023-10-23 13:36:32 +02:00
lang: en
2023-10-23 13:33:35 +02:00
markdown_extensions:
- pymdownx.arithmatex:
generic: true
2023-11-22 10:19:50 +01:00
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- def_list
2023-12-02 13:46:27 +01:00
- admonition
- pymdownx.details
- pymdownx.superfences
2023-11-22 10:19:50 +01:00
2023-12-29 17:11:21 +01:00
extra_css:
- stylesheets/extra.css
2023-12-07 22:04:29 +01:00
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
2023-10-23 13:33:35 +02:00
nav:
- 'Welcome': index.md
- 'Mathematics':
2024-01-03 13:39:36 +01:00
- mathematics/index.md
2023-11-21 21:52:30 +01:00
- 'Logic': mathematics/logic.md
2023-12-02 13:39:20 +01:00
- 'Set theory':
- 'Sets': mathematics/set-theory/sets.md
- 'Relations': mathematics/set-theory/relations.md
- 'Maps': mathematics/set-theory/maps.md
- 'Permutations': mathematics/set-theory/permutations.md
- 'Orders': mathematics/set-theory/orders.md
2023-12-30 20:54:26 +01:00
- 'Recursion and induction': mathematics/set-theory/recursion-induction.md
- 'Cardinalities': mathematics/set-theory/cardinalities.md
- 'Additional axioms': mathematics/set-theory/additional-axioms.md
- 'Number theory':
- 'Integer arithmetic': mathematics/number-theory/integer-arithmetic.md
- 'Modular arithmetic': mathematics/number-theory/modular-arithmetic.md
- 'Complex numbers': mathematics/number-theory/complex-numbers.md
- 'Linear algebra':
- 'Systems of linear equations': mathematics/linear-algebra/systems-of-linear-equations.md
2024-01-06 21:22:26 +01:00
- 'Matrices':
- 'Matrix arithmetic': mathematics/linear-algebra/matrices/matrix-arithmetic.md
- 'Matrix algebra': mathematics/linear-algebra/matrices/matrix-algebra.md
- 'Elementary matrices': mathematics/linear-algebra/matrices/elementary-matrices.md
- 'Determinants': mathematics/linear-algebra/determinants.md
- 'Calculus':
- 'Limits': mathematics/calculus/limits.md
- 'Continuity': mathematics/calculus/continuity.md
- 'Differentation': mathematics/calculus/differentation.md
- 'Transcendental functions':
- 'Inverse functions': mathematics/calculus/transcendental-functions/inverse-functions.md
- 'Exponential and logarithmic functions': mathematics/calculus/transcendental-functions/exponential-and-logarithmic-functions.md
- 'Extremes values': mathematics/calculus/extremes-values.md
- 'Concavity and inflections': mathematics/calculus/concavity-and-inflections.md
- 'Taylor polynomials': mathematics/calculus/taylor-polynomials.md
2023-11-15 19:44:38 +01:00
- 'Integration': mathematics/calculus/integration.md
- 'Integration techniques': mathematics/calculus/integration-techniques.md
- 'Improper integrals': mathematics/calculus/improper-integrals.md
- 'Multivariable calculus':
- 'Functions of several variables': mathematics/multivariable-calculus/functions-of-several-variables.md
- 'Limits and continuity': mathematics/multivariable-calculus/limits-and-continuity.md
- 'Differentation': mathematics/multivariable-calculus/differentation.md
- 'Implicit equations': mathematics/multivariable-calculus/implicit-equations.md
- 'Taylor polynomials': mathematics/multivariable-calculus/taylor-polynomials.md
- 'Extrema': mathematics/multivariable-calculus/extrema.md
- 'Integration': mathematics/multivariable-calculus/integration.md
- 'Ordinary differential equations':
- 'First order differential equations': mathematics/ordinary-differential-equations/first-order-ode.md
- 'Second order differential equations': mathematics/ordinary-differential-equations/second-order-ode.md
- 'Systems of linear differential equations': mathematics/ordinary-differential-equations/systems-of-linear-ode.md
2023-10-25 22:27:17 +02:00
- 'The Laplace transform': mathematics/ordinary-differential-equations/laplace-transform.md
- 'Physics':
- physics/index.md
- 'Mathematical physics':
- 'Signal analysis':
2024-01-19 19:55:03 +01:00
- 'Signals': physics/mathematical-physics/signal-analysis/signals.md
2024-01-19 19:57:53 +01:00
# - 'Fourier series':
# - 'Fourier transform':
# - 'Discrete Fourier transform':
2024-01-19 19:55:03 +01:00
- 'Electromagnetism':
2024-01-19 19:57:53 +01:00
# - 'Electrostatics':
# - 'Magnetostatics':
2024-01-19 19:55:03 +01:00
- 'Maxwell-equations': physics/electromagnetism/maxwell-equations.md
- 'Optics':
- 'Waves': physics/electromagnetism/optics/waves.md
- 'Electromagnetic waves': physics/electromagnetism/optics/electromagnetic-waves.md
2023-10-23 13:33:35 +02:00
- 'Chemistry':
2024-01-03 13:39:36 +01:00
- chemistry/index.md
2023-10-23 13:33:35 +02:00
- 'Philosophy':
2024-01-03 13:39:36 +01:00
- philosophy/index.md
2023-10-23 13:33:35 +02:00
- 'Programming':
2024-01-03 13:39:36 +01:00
- programming/index.md