Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion DynamicalSystems/Documentation.lean
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ set_option linter.hashCommand false

set_option pp.rawOnError true

open Verso Doc Elab in
@[role_expander leanVersion]
def leanVersion : RoleExpander
| #[], #[] => do
return #[← ``(Verso.Doc.Inline.code $(Lean.Quote.quote Lean.versionString))]
| _, _ => throwError "Unexpected arguments"

#doc (Manual) "Nonlinear dynamical systems & control theory" =>

%%%
Expand All @@ -22,7 +29,8 @@ authors := ["Moritz Doll", "Iman Shames"]
This repository develops the mathematical foundations of nonlinear dynamical systems and control
theory.

The code is hosted on [Github](https://github.com/mcdoll/DynamicalSystems).
The code is hosted on [Github](https://github.com/mcdoll/DynamicalSystems) and compiled with
Lean {leanVersion}[].

{include 1 DynamicalSystems.Mathlib.Analysis.ODE.Documentation}
{include 1 DynamicalSystems.Basic.Documentation}
Expand Down