diff --git a/_quarto.yml b/_quarto.yml index 6f00069..b643167 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -66,8 +66,7 @@ format: dark: [superhero, css/dark.scss] css: - css/styles.css - - css/roboto-condensed.css - + - css/roboto-condensed.css highlight-style: github # arrow ????? mainfont: "Roboto Condensed" # Ubuntu # "Atkinson Hyperlegible" # Verdana #Quicksand toc: true # change for Vorlesung diff --git a/chapters/entwicklungsumgebungen.qmd b/chapters/entwicklungsumgebungen.qmd index 9378c78..50d217e 100644 --- a/chapters/entwicklungsumgebungen.qmd +++ b/chapters/entwicklungsumgebungen.qmd @@ -32,7 +32,7 @@ $ julia (_) | (_) (_) | _ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help. | | | | | | |/ _` | | - | | |_| | | | (_| | | Version 1.11.3 (2025-01-21) + | | |_| | | | (_| | | Version 1.11.4 (2025-03-10) _/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release |__/ | diff --git a/chapters/types.qmd b/chapters/types.qmd index 3db8099..8a6433d 100644 --- a/chapters/types.qmd +++ b/chapters/types.qmd @@ -494,7 +494,7 @@ Wenn man solche Zuweisungen mit `const` für dauerhaft erklärt, entsteht ein ```{julia} const MyCmplxF64 = MyComplex{Float64} -z = MyComplex(1.1, 2.2) +z = MyCmplxF64(1.1, 2.2) typeof(z) ``` diff --git a/css/dark.scss b/css/dark.scss index 2e4ffab..d7af9ca 100644 --- a/css/dark.scss +++ b/css/dark.scss @@ -5,6 +5,8 @@ $h3-font-size: 1.2rem !default; $border-radius: 0; +$font-family-monospace: "JuliaMono"; + /* bug in superhero theme? */ h1,h2,h3,h4,h5,h6 {color: #f0f0f0 !important;} @@ -13,6 +15,7 @@ h1,h2,h3,h4,h5,h6 {color: #f0f0f0 !important;} .cell-output code span {color: #000;} + /*-- scss:rules --*/ div.cell-output { background-color: #dbdbdb; } diff --git a/css/light.scss b/css/light.scss index 1cdc7b5..e9dde23 100644 --- a/css/light.scss +++ b/css/light.scss @@ -8,6 +8,8 @@ $border-radius: 0; /* $code-block-bg: #f3f3f3; */ $code-block-bg: #f7f7f7; +$font-family-monospace: "JuliaMono"; + /*-- scss:rules --*/ div.cell-output { background-color: #ffffff; } code {color: #202020;} diff --git a/index.qmd b/index.qmd index 4d8b9ad..fe540d8 100644 --- a/index.qmd +++ b/index.qmd @@ -39,7 +39,7 @@ f Intelligence Laboratory* des MIT - 2012 erste release v0.1 - 2018 Version v1.0 -- aktuell: v1.11.3 vom 21. Januar 2025 +- aktuell: v1.11.4 vom 10. März 2025 Zum ersten release 2012 haben die Schöpfer von Julia ihre Ziele und Motivation in dem Blogbeitrag [Why we created Julia](https://julialang.org/blog/2012/02/why-we-created-julia/) interessant zusammengefasst.