From 2fe1609febb381c7d8d485b4cb08cf77768908a9 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Tue, 25 May 2021 06:38:42 -0400 Subject: [PATCH 1/2] spawn job for ODE introduction And cross fingers. --- tutorials/introduction/01-ode_introduction.jmd | 1 + 1 file changed, 1 insertion(+) diff --git a/tutorials/introduction/01-ode_introduction.jmd b/tutorials/introduction/01-ode_introduction.jmd index c4ce7994..b6418098 100644 --- a/tutorials/introduction/01-ode_introduction.jmd +++ b/tutorials/introduction/01-ode_introduction.jmd @@ -3,6 +3,7 @@ title: An Intro to DifferentialEquations.jl author: Chris Rackauckas --- + ## Basic Introduction Via Ordinary Differential Equations This notebook will get you started with DifferentialEquations.jl by introducing you to the functionality for solving ordinary differential equations (ODEs). The corresponding documentation page is the [ODE tutorial](https://docs.sciml.ai/dev/tutorials/ode_example/). While some of the syntax may be different for other types of equations, the same general principles hold in each case. Our goal is to give a gentle and thorough introduction that highlights these principles in a way that will help you generalize what you have learned. From 8a2e4fffbcc8df893d7ee02f6165fb3e3eb27671 Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Tue, 25 May 2021 06:52:05 -0400 Subject: [PATCH 2/2] fix typo --- tutorials/introduction/01-ode_introduction.jmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/introduction/01-ode_introduction.jmd b/tutorials/introduction/01-ode_introduction.jmd index b6418098..2720e8d8 100644 --- a/tutorials/introduction/01-ode_introduction.jmd +++ b/tutorials/introduction/01-ode_introduction.jmd @@ -343,5 +343,5 @@ These are the basic controls in DifferentialEquations.jl. All equations are defi ```julia, echo = false, skip="notebook" using SciMLTutorials -SciMLTutorials.bench_footer(WEAVE_ARGS[:folder],WEAVE_ARGS[:file]) +SciMLTutorials.tutorial_footer(WEAVE_ARGS[:folder],WEAVE_ARGS[:file]) ```