Update make.jl

This commit is contained in:
relmonta 2020-10-14 10:43:28 +02:00 committed by GitHub
parent b7ab4b1c98
commit 33561021da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,31 +9,31 @@ makedocs(
authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir", authors = "Saloua Naama, Mohamed El Waghf et Rachid ELMontassir",
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"), format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
pages = [ pages = [
"Accueil" => "index.md", "Accueil" => "index.md"
"Sujet" => "Sujet.md", #,"Sujet" => "Sujet.md",
"Algorithmes" => [ #"Algorithmes" => [
"L'algorithme de Newton local" => "Algorithme_de_newton.md", # "L'algorithme de Newton local" => "Algorithme_de_newton.md",
"La méthode des régions de confiance" => "Regions_de_confiance.md", # "La méthode des régions de confiance" => "Regions_de_confiance.md",
"La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md" # "La méthode du Lagrangien augmenté" => "Lagrangien_augmente.md"
], # ],
"Index des fonctions" =>"fct_index.md", # "Index des fonctions" =>"fct_index.md",
"Travail à réaliser" => [ #"Travail à réaliser" => [
"Pour l'algorithme de Newton" => "Questions_Newton.md", # "Pour l'algorithme de Newton" => "Questions_Newton.md",
"Pour les régions de confiance avec le pas de Cauchy" => "Questions_Pas_De_Cauchy.md", # "Pour les régions de confiance avec le pas de Cauchy" => "Questions_Pas_De_Cauchy.md",
"Pour les régions de confiance avec le gradient conjugué tronqué" => "Questions_GCT.md", # "Pour les régions de confiance avec le gradient conjugué tronqué" => "Questions_GCT.md",
"Pour Lagrangien augmenté" => "Questions_Lagrangien_Augmente.md" # "Pour Lagrangien augmenté" => "Questions_Lagrangien_Augmente.md"
], # ],
"Annexes" => "Annexes.md", #"Annexes" => "Annexes.md",
"Exemples d'appels" =>"Exemples.md", #"Exemples d'appels" =>"Exemples.md",
"Mise en place" => "mise_en_place.md", #"Mise en place" => "mise_en_place.md",
"Julia vs MatLab"=> "julia_vs_matlab.md", #"Julia vs MatLab"=> "julia_vs_matlab.md",
"Création de Modules en Julia" => "create_package.md", #"Création de Modules en Julia" => "create_package.md",
"Création d'un dépôt Git pour un module Julia" => "git_doc.md", #"Création d'un dépôt Git pour un module Julia" => "git_doc.md",
"Géneration de la doc" => "generation_doc.md", #"Géneration de la doc" => "generation_doc.md",
"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md", #"Intégration continue et déploiement de la Doc avec Travis" =>"Integration_continue.md",
"Précompilation des modules"=>"Precompilation.md", # "Précompilation des modules"=>"Precompilation.md",
"Génération du rapport" => "generate_pdf.md", #"Génération du rapport" => "generate_pdf.md",
"Foire aux Questions" =>"FAQ.md" #"Foire aux Questions" =>"FAQ.md"
] ]
) )