From d8123167bed7d7ef6b7b75bc1e3f9a6f0e5347a5 Mon Sep 17 00:00:00 2001 From: Meik Hellmund Date: Wed, 21 Feb 2024 18:02:17 +0100 Subject: [PATCH] first adaptions to quarto1.5, julia 1.10 --- .vscode/settings.json | 2 +- _quarto.yml | 19 +++++++++---------- chapters/entwicklungsumgebungen.qmd | 4 +--- index.qmd | 6 +++--- 4 files changed, 14 insertions(+), 17 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b8c5d67..9b1508c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,7 +7,7 @@ "**/CVS": true, "**/.DS_Store": true, "**/Thumbs.db": true, - "**/*.ipynb": true, + "**/*.ipynb": false, "**/*.md": false }, "explorerExclude.backup": {}, diff --git a/_quarto.yml b/_quarto.yml index fa0a4b2..ab67fdc 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -45,15 +45,14 @@ book: - chapters/first_contact.qmd - chapters/Erste_Bsp.qmd - chapters/syntax.qmd - - chapters/5_TricksHelp.qmd - - chapters/numerictypes.qmd - - chapters/Pi2.qmd - - chapters/types.qmd - - chapters/pcomplex.qmd - - chapters/9_functs.qmd - - chapters/6_ArraysEtcP1.qmd - - chapters/7_ArraysP2.qmd - - chapters/10_Strings.qmd + # - chapters/5_TricksHelp.qmd + # - chapters/numerictypes.qmd + # - chapters/Pi2.qmd + # - chapters/pcomplex.qmd + # - chapters/9_functs.qmd + # - chapters/6_ArraysEtcP1.qmd + # - chapters/7_ArraysP2.qmd + # - chapters/10_Strings.qmd # - chapters/makie.qmd # - chapters/ablaufsteuerung.qmd # - chapters/example.qmd @@ -122,7 +121,7 @@ keep-ipynb: true keep-tex: true keep-md: true -jupyter: julia-1.8 +jupyter: julia-1.10 filters: - code-visibility diff --git a/chapters/entwicklungsumgebungen.qmd b/chapters/entwicklungsumgebungen.qmd index ad1fd34..75a3ff0 100644 --- a/chapters/entwicklungsumgebungen.qmd +++ b/chapters/entwicklungsumgebungen.qmd @@ -27,17 +27,15 @@ Wenn man Julia direkt startet, wird die [Julia-REPL](https://docs.julialang.org/ ```default $ julia - _ _ _ _(_)_ | Documentation: https://docs.julialang.org (_) | (_) (_) | _ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help. | | | | | | |/ _` | | - | | |_| | | | (_| | | Version 1.8.5 (2023-01-08) + | | |_| | | | (_| | | Version 1.10.1 (2024-02-13) _/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release |__/ | - julia> ``` diff --git a/index.qmd b/index.qmd index 45052c2..bee0060 100644 --- a/index.qmd +++ b/index.qmd @@ -11,7 +11,7 @@ a = [3, 7, 5, 3] b = [1, 3, 7, 4] δ = π/2 t = LinRange(-π, π, 300) -f = Figure(resolution=(800, 180)) +f = Figure(size=(800, 180)) for i in 1:4 x = sin.( a[i] .* t .+ δ ) y = sin.( b[i] .* t ) @@ -27,7 +27,7 @@ f Intelligence Laboratory* des MIT - 2012 erste release v0.1 - 2018 Version v1.0 -- aktuell: v1.8.5 vom 8. Januar 2023 +- aktuell: v1.10.1 vom 13. Februar 2024 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. @@ -118,5 +118,5 @@ Julia has a built-in package manager." - [The Julia Express](http://bogumilkaminski.pl/files/julia_express.pdf) - Kurzfassung, Julia auf 16 Seiten - [Think Julia](https://benlauwens.github.io/ThinkJulia.jl/latest/book.html) - Einführung in die Programmierung mit Julia als Sprache - Das [Julia Forum](https://discourse.julialang.org/) -- Was fürs Auge: [Beispiele zum Julia-Grafikpaket `Makie`](https://beautiful.makie.org/dev/) +- Was fürs Auge: [Beispiele zum Julia-Grafikpaket `Makie`](https://beautiful.makie.org/)