diff --git a/_quarto.yml b/_quarto.yml index 976dea5..f303ea0 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -14,6 +14,147 @@ website: search: true draft-mode: unlinked + sidebar: + - id: topic-sidebar + style: "floating" + contents: + - section: "Topics" + contents: + - ./posts/polycount/index.qmd + - ./posts/chebyshev/index.qmd + - ./posts/permutations/index.qmd + - ./posts/pentagons/index.qmd + - ./posts/type-algebra/index.qmd + - ./posts/finite-field/index.qmd + - ./posts/number-number/index.qmd + - ./posts/stereo/index.qmd + + - id: misc-sidebar + style: "floating" + contents: + - section: "Miscellaneous" + contents: + - ./posts/misc/platonic-volume/index.qmd + - ./posts/misc/infinitesimals/index.qmd + + - id: polycount-sidebar + style: "floating" + contents: + - section: "Polynomial Counting" + href: ./posts/polycount/index.qmd + contents: + - text: "Part 1: A primer" + href: ./posts/polycount/1/index.qmd + - text: "Part 2: Binary and beyond" + href: ./posts/polycount/2/index.qmd + - text: "Part 3: The third degree" + href: ./posts/polycount/3/index.qmd + - text: "Part 4: Two twos" + href: ./posts/polycount/4/index.qmd + contents: + - text: "Appendix" + href: ./posts/polycount/4/appendix/index.qmd + - text: "Part 5: Pentamerous multiplication" + href: ./posts/polycount/5/index.qmd + - section: 2D + contents: + - text: "Part 1: Lines, leaves, and sand" + href: ./posts/polycount/sand-1/index.qmd + - text: "Part 2: Reorienting Polynomials" + href: ./posts/polycount/sand-2/index.qmd + + - id: chebyshev-sidebar + style: "floating" + contents: + - section: "Generating Polynomials" + href: ./posts/chebyshev/index.qmd + contents: + - text: "Part 1: Regular Constructability" + href: ./posts/chebyshev/1/index.qmd + - text: "Part 2: Ghostly Chains" + href: ./posts/chebyshev/2/index.qmd + - text: "Extra: Legendary" + href: ./posts/chebyshev/extra/index.qmd + + - id: pentagons-sidebar + style: "floating" + contents: + - section: "12 Pentagons" + href: ./posts/pentagons/index.qmd + contents: + - text: "Part 1" + href: ./posts/pentagons/1/index.qmd + - text: "Part 2" + href: ./posts/pentagons/2/index.qmd + - text: "Part 3" + href: ./posts/pentagons/3/index.qmd + + - id: permutations-sidebar + style: "floating" + contents: + - section: "A Game of Permutations" + href: ./posts/permutations/index.qmd + contents: + - text: "Part 1" + href: ./posts/permutations/1/index.qmd + - text: "Part 2" + href: ./posts/permutations/2/index.qmd + - text: "Part 3" + href: ./posts/permutations/3/index.qmd + - text: "Appendix" + href: ./posts/permutations/appendix/index.qmd + + - id: stereography-sidebar + style: "floating" + contents: + - section: "Algebraic Stereography" + href: ./posts/stereo/index.qmd + contents: + - ./posts/stereo/1/index.qmd + - ./posts/stereo/2/index.qmd + + - id: type-algebra-sidebar + style: "floating" + contents: + - section: "Type Algebra and You" + href: ./posts/type-algebra/index.qmd + contents: + - text: "Part 1: Basics" + href: ./posts/type-algebra/1/index.qmd + - text: "Part 2: A Fixer-upper" + href: ./posts/type-algebra/2/index.qmd + - text: "Part 3: Combinatorial Types" + href: ./posts/type-algebra/3/index.qmd + + - id: number-number-sidebar + style: "floating" + contents: + - section: "Numbering Numbers" + href: ./posts/number-number/index.qmd + contents: + - text: "From 0 to ∞" + href: ./posts/number-number/1/index.qmd + - text: "Ordering Obliquely" + href: ./posts/number-number/2/index.qmd + + - id: finite-field-sidebar + style: "floating" + contents: + - section: "Exploring Finite Fields" + href: ./posts/finite-field/index.qmd + contents: + - text: "Part 1: Preliminaries" + href: ./posts/finite-field/1/index.qmd + - text: "Part 2: Matrix Boogaloo" + href: ./posts/finite-field/2/index.qmd + contents: + - text: "Appendix" + href: ./posts/finite-field/2/extra/index.qmd + - text: "Part 3: Roll a d20" + href: ./posts/finite-field/2/index.qmd + - text: "Part 5: The Power of Forgetting" + href: ./posts/finite-field/2/index.qmd + format: html: theme: diff --git a/posts/chebyshev/_metadata.yml b/posts/chebyshev/_metadata.yml index eaf1857..e07b5c0 100644 --- a/posts/chebyshev/_metadata.yml +++ b/posts/chebyshev/_metadata.yml @@ -1,5 +1,4 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true +sidebar: chebyshev-sidebar diff --git a/posts/chebyshev/index.qmd b/posts/chebyshev/index.qmd index ce9ef14..4e7b59a 100644 --- a/posts/chebyshev/index.qmd +++ b/posts/chebyshev/index.qmd @@ -3,6 +3,8 @@ title: "Chebyshev Polynomials" listing: contents: . sort: "date" + +sidebar: --- Articles about the generating Chebyshev polynomials (and other related families). diff --git a/posts/finite-field/_metadata.yml b/posts/finite-field/_metadata.yml index eaf1857..19de94f 100644 --- a/posts/finite-field/_metadata.yml +++ b/posts/finite-field/_metadata.yml @@ -1,5 +1,4 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true +sidebar: finite-field-sidebar diff --git a/posts/finite-field/index.qmd b/posts/finite-field/index.qmd index 1145b9b..a49c099 100644 --- a/posts/finite-field/index.qmd +++ b/posts/finite-field/index.qmd @@ -3,6 +3,8 @@ title: "Exploring Finite Fields" listing: contents: . sort: "date" + +sidebar: --- Articles about finite fields from a slightly less abstract perspective. diff --git a/posts/misc/_metadata.yml b/posts/misc/_metadata.yml new file mode 100644 index 0000000..ccdca80 --- /dev/null +++ b/posts/misc/_metadata.yml @@ -0,0 +1,4 @@ +# freeze computational output +freeze: auto + +sidebar: misc-sidebar diff --git a/posts/number-number/_metadata.yml b/posts/number-number/_metadata.yml index 1cede7f..c4aaad7 100644 --- a/posts/number-number/_metadata.yml +++ b/posts/number-number/_metadata.yml @@ -1,9 +1,6 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true - # Get rid of the figure label crossref: fig-title: "" @@ -20,3 +17,5 @@ crossref: kind: float reference-prefix: Table space-before-numbering: false + +sidebar: number-number-sidebar diff --git a/posts/number-number/index.qmd b/posts/number-number/index.qmd index 55da3ae..0b7668a 100644 --- a/posts/number-number/index.qmd +++ b/posts/number-number/index.qmd @@ -3,6 +3,8 @@ title: "Numbering Numbers" listing: contents: . sort: "date" + +sidebar: --- Articles about enumerating numbers, in particular those involving rational numbers. diff --git a/posts/pentagons/_metadata.yml b/posts/pentagons/_metadata.yml index 8c5faf1..c6a3a3c 100644 --- a/posts/pentagons/_metadata.yml +++ b/posts/pentagons/_metadata.yml @@ -1,9 +1,6 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true - execute: echo: false @@ -23,3 +20,5 @@ crossref: kind: float reference-prefix: Table space-before-numbering: false + +sidebar: pentagons-sidebar diff --git a/posts/pentagons/index.qmd b/posts/pentagons/index.qmd index 3524de7..c5946a1 100644 --- a/posts/pentagons/index.qmd +++ b/posts/pentagons/index.qmd @@ -2,7 +2,9 @@ title: "12 Pentagons" listing: contents: . - sort: "date desc" + sort: "date" + +sidebar: --- Articles about polyhedra made entirely of pentagons and hexagons, in particular those due to diff --git a/posts/permutations/_metadata.yml b/posts/permutations/_metadata.yml index eaf1857..82cb544 100644 --- a/posts/permutations/_metadata.yml +++ b/posts/permutations/_metadata.yml @@ -1,5 +1,4 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true +sidebar: permutations-sidebar diff --git a/posts/permutations/index.qmd b/posts/permutations/index.qmd index 933e559..f151116 100644 --- a/posts/permutations/index.qmd +++ b/posts/permutations/index.qmd @@ -3,6 +3,8 @@ title: "A Game of Permutations" listing: contents: . sort: "date" + +sidebar: --- Articles about diagrams at the intersection between graph theory and group theory. diff --git a/posts/polycount/_metadata.yml b/posts/polycount/_metadata.yml index eaf1857..3e29d98 100644 --- a/posts/polycount/_metadata.yml +++ b/posts/polycount/_metadata.yml @@ -1,5 +1,4 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true +sidebar: polycount-sidebar diff --git a/posts/polycount/index.qmd b/posts/polycount/index.qmd index 9eac765..5fbb3af 100644 --- a/posts/polycount/index.qmd +++ b/posts/polycount/index.qmd @@ -3,6 +3,8 @@ title: "Polynomial Counting" listing: contents: . sort: "date" + +sidebar: --- Articles about generalizations of positional number systems, explained using the concept of counting on polynomials. diff --git a/posts/stereo/_metadata.yml b/posts/stereo/_metadata.yml index eaf1857..bbfc5ae 100644 --- a/posts/stereo/_metadata.yml +++ b/posts/stereo/_metadata.yml @@ -1,5 +1,4 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true +sidebar: stereograph-sidebar diff --git a/posts/stereo/index.qmd b/posts/stereo/index.qmd index 82c3696..dd1bf7e 100644 --- a/posts/stereo/index.qmd +++ b/posts/stereo/index.qmd @@ -3,6 +3,10 @@ title: "Algebraic Stereography" listing: contents: . sort: "date" + +sidebar: --- Articles about the use of rational circle functions and some applications. + +Publication dates correspond to the original WordPress publication dates. diff --git a/posts/type-algebra/_metadata.yml b/posts/type-algebra/_metadata.yml index eaf1857..500f7e5 100644 --- a/posts/type-algebra/_metadata.yml +++ b/posts/type-algebra/_metadata.yml @@ -1,5 +1,4 @@ # freeze computational output freeze: auto -# Enable banner style title blocks -title-block-banner: true +sidebar: type-algebra-sidebar diff --git a/posts/type-algebra/index.qmd b/posts/type-algebra/index.qmd index bd84989..b715769 100644 --- a/posts/type-algebra/index.qmd +++ b/posts/type-algebra/index.qmd @@ -3,6 +3,8 @@ title: "Type Algebra and You" listing: contents: . sort: "date" + +sidebar: --- Articles about the arithmetic manipulation of algebraic types.