mirror of
https://github.com/LucasVbr/interpreteur-lir.git
synced 2026-05-13 17:21:52 +00:00
MAJ specif
This commit is contained in:
@@ -0,0 +1,16 @@
|
|||||||
|
\section{Commande charge}
|
||||||
|
|
||||||
|
\subsection*{Récit d'utilisation}
|
||||||
|
|
||||||
|
\paragraph{Titre : } Commande charge
|
||||||
|
\paragraph{Récit : } Chargement d'un programme à partir d'un fichier
|
||||||
|
\paragraph{En tant que : } Programmeur avec l'interpréteur LIR
|
||||||
|
\paragraph{Je souhaite : } charger un programme LIR préalablement enregistré dans un fichier
|
||||||
|
\paragraph{Afin de : } je puisse réutiliser un programme LIR sans repartir de zéro.
|
||||||
|
|
||||||
|
\subsection*{Critères d'acceptation}
|
||||||
|
|
||||||
|
\paragraph{À partir du fait : } un fichier contenant un programme LIR sur mon ordinateur
|
||||||
|
\paragraph{Alors : } lorsque j'entre la commande charge avec en argument le chemin de ce fichier
|
||||||
|
\paragraph{Enfin : } les lignes de codes enregistrées dans le fichier sont chargée dans le
|
||||||
|
programme pour pouvoir être exécutées et/ou modifiées par l'interpréteur LIR
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
\section{Commande sauve}
|
||||||
|
|
||||||
|
\subsection*{Récit d'utilisation}
|
||||||
|
|
||||||
|
\paragraph{Titre : } Commande sauve
|
||||||
|
\paragraph{Récit : } Sauvegarde d'un programme dans un fichier
|
||||||
|
\paragraph{En tant que : } Programmeur dans l'interpréteur LIR
|
||||||
|
\paragraph{Je souhaite : } sauvegarder un programme LIR dans un fichier
|
||||||
|
\paragraph{Afin de : } Pourvoir reprendre mon travail où je m'étais arrêté
|
||||||
|
|
||||||
|
\subsection*{Critères d'acceptation}
|
||||||
|
|
||||||
|
\paragraph{À partir du fait : } Qu'un programme (avec des étiquettes) ai été saisi
|
||||||
|
\paragraph{Alors : } lorsque j'entre la commande sauve avec en argument le chemin du fichier (dans lequel on souhaite sauvegarder le travail)
|
||||||
|
sauve <cheminFichier>
|
||||||
|
\paragraph{Enfin : } les lignes de codes tapées dans l'interpréteur s'enregistres dans le fichier passé en argument de la commande
|
||||||
|
pour pouvoir être rechargées plus tard par l'interpréteur LIR avec la commande charge <cheminFichier>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
\section{Instruction procedure}
|
||||||
|
|
||||||
|
\subsection*{Récit d'utilisation}
|
||||||
|
|
||||||
|
\paragraph{Titre : } Procédure
|
||||||
|
\paragraph{Récit : } Ordonner a l'interpréteur à exécuter des lignes
|
||||||
|
de code à partir de l'étiquette de l'instruction.
|
||||||
|
\paragraph{En tant que : } Programmeur
|
||||||
|
\paragraph{Je souhaite : } transférer l'exécution au numéro d'étiquette spécifié.
|
||||||
|
\paragraph{Afin de : } exécuter le programme puis reprendre en séquence une fois le procédure terminée.
|
||||||
|
|
||||||
|
\subsection*{Critères d'acceptation}
|
||||||
|
|
||||||
|
\paragraph{À partir de : } Plusieurs lignes de code et d'identificateurs déclarés, dont la portée est globale.
|
||||||
|
|
||||||
|
\paragraph{Alors : } En utilisant l'instruction \verb|procedure <etiquette>|
|
||||||
|
|
||||||
|
\paragraph{Enfin : } Alors l'interpréteur va chercher la ligne qui a pour identificateur celui référencé
|
||||||
|
en etiquette et va l'exécuter jusqu'à la fin de la séquence.
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
\section{Instruction retour}
|
||||||
|
|
||||||
|
\subsection*{Récit d'utilisation}
|
||||||
|
|
||||||
|
\paragraph{Titre : } retour
|
||||||
|
\paragraph{Récit : } Ordonner a l'interpréteur de retourner à la suite de l'instruction qui suit son appel.
|
||||||
|
\paragraph{En tant que : } Programmeur
|
||||||
|
\paragraph{Je souhaite : } retourner à la suite de la ligne de code qui a précédé l'appel de procédure.
|
||||||
|
\paragraph{Afin de : } d'exécuter le programme qui allait s'exécuter si l'appel de procédure n'avait pas été fait.
|
||||||
|
|
||||||
|
\subsection*{Critères d'acceptation}
|
||||||
|
|
||||||
|
\paragraph{À partir de : } Plusieurs lignes de code et à la suite d'une instruction procédure.
|
||||||
|
|
||||||
|
\paragraph{Alors : } j'écris l'instruction \verb|retour|
|
||||||
|
|
||||||
|
\paragraph{Enfin : } Alors l'interpréteur va chercher la ligne qui suivait l'instruction procédure et va l'exécuter jusqu'à la fin de la séquence.
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
\section{Instruction si... vaen}
|
||||||
|
\subsection*{Récit d'utilisation}
|
||||||
|
|
||||||
|
\paragraph{Titre : } Instruction \verb|Si|...\verb|vaen|
|
||||||
|
\paragraph{Récit : } Sauts conditionnels
|
||||||
|
\paragraph{En tant que : } programmeur
|
||||||
|
\paragraph{Je souhaite : } effectuer un saut vers une ligne
|
||||||
|
spécifique d'un programme si la condition est remplie.
|
||||||
|
\paragraph{Afin de : } Créer des branchements ou des itérations
|
||||||
|
dans mes programmes.
|
||||||
|
\newpage
|
||||||
|
\subsection*{Critères d'acceptation}
|
||||||
|
|
||||||
|
\paragraph{À partir de : } la saisie d'un programme
|
||||||
|
\paragraph{Alors : } j'entre la commande \verb|si| suivie de la condition a remplir \verb|vaen| suivie du numéro
|
||||||
|
de la ligne où je veux effectuer le saut.
|
||||||
|
\paragraph{Enfin : } lors de l'exécution de l'instruction, le programme
|
||||||
|
ignorera les lignes suivantes et sautera directement à la ligne
|
||||||
|
indiquée si il valide la condition imposée.
|
||||||
@@ -35,9 +35,9 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{3}{section*.10}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{3}{section*.10}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{3}{section*.11}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{3}{section*.11}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{3}{section*.12}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{3}{section*.12}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Commande debut}{3}{section.1.2}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Commande debut}{4}{section.1.2}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{3}{section*.14}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{4}{section*.14}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{3}{section*.15}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{4}{section*.15}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{4}{section*.16}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{4}{section*.16}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{4}{section*.17}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{4}{section*.17}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{4}{section*.18}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{4}{section*.18}\protected@file@percent }
|
||||||
@@ -53,9 +53,9 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{4}{section*.30}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{4}{section*.30}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{4}{section*.31}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{4}{section*.31}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{4}{section*.32}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{4}{section*.32}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1.4}Commande defs}{4}{section.1.4}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {1.4}Commande defs}{5}{section.1.4}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{4}{section*.34}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{5}{section*.34}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{4}{section*.35}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{5}{section*.35}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{5}{section*.36}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{5}{section*.36}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{5}{section*.37}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{5}{section*.37}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{5}{section*.38}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{5}{section*.38}\protected@file@percent }
|
||||||
@@ -71,9 +71,9 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{5}{section*.50}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{5}{section*.50}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{5}{section*.51}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{5}{section*.51}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{5}{section*.52}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{5}{section*.52}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1.6}Commande affiche avec une expression}{5}{section.1.6}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {1.6}Commande affiche avec une expression}{6}{section.1.6}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{5}{section*.54}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{6}{section*.54}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{5}{section*.55}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{6}{section*.55}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{6}{section*.56}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{6}{section*.56}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{6}{section*.57}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{6}{section*.57}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{6}{section*.58}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{6}{section*.58}\protected@file@percent }
|
||||||
@@ -88,9 +88,9 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{6}{section*.68}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{6}{section*.68}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{6}{section*.70}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{6}{section*.70}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{6}{section*.71}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{6}{section*.71}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{6}{section*.72}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{7}{section*.72}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1.8}Commande var pour un entier}{6}{section.1.8}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {1.8}Commande var pour un entier}{7}{section.1.8}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{6}{section*.74}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{7}{section*.74}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{7}{section*.75}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{7}{section*.75}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{7}{section*.76}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{7}{section*.76}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{7}{section*.77}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{7}{section*.77}\protected@file@percent }
|
||||||
@@ -105,8 +105,8 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{7}{section*.87}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{7}{section*.87}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{7}{section*.88}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{7}{section*.88}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{7}{section*.90}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{7}{section*.90}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{7}{section*.91}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{8}{section*.91}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{7}{section*.92}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{8}{section*.92}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {1.10}Expression logique}{8}{section.1.10}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {1.10}Expression logique}{8}{section.1.10}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{8}{section*.94}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{8}{section*.94}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{8}{section*.95}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{8}{section*.95}\protected@file@percent }
|
||||||
@@ -120,8 +120,8 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{8}{section*.104}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{8}{section*.104}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{8}{section*.105}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{8}{section*.105}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{8}{section*.106}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{8}{section*.106}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{8}{section*.107}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{9}{section*.107}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin que : }{8}{section*.108}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin que : }{9}{section*.108}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{9}{section*.110}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{9}{section*.110}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{9}{section*.111}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{9}{section*.111}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{9}{section*.112}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{9}{section*.112}\protected@file@percent }
|
||||||
@@ -137,10 +137,10 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{10}{section*.120}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{10}{section*.120}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{10}{section*.121}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{10}{section*.121}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{10}{section*.122}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{10}{section*.122}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Commande lance}{10}{section.2.2}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Commande lance}{11}{section.2.2}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{10}{section*.124}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{11}{section*.124}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{10}{section*.125}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{11}{section*.125}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{10}{section*.126}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{11}{section*.126}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{11}{section*.127}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{11}{section*.127}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{11}{section*.128}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{11}{section*.128}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{11}{section*.130}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{11}{section*.130}\protected@file@percent }
|
||||||
@@ -154,10 +154,10 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{11}{section*.138}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{11}{section*.138}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{11}{section*.140}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{11}{section*.140}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{11}{section*.141}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{11}{section*.141}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{11}{section*.142}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{12}{section*.142}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Etiquette}{11}{section.2.4}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Etiquette}{12}{section.2.4}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{11}{section*.144}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{12}{section*.144}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{11}{section*.145}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{12}{section*.145}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{12}{section*.146}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{12}{section*.146}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{12}{section*.147}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{12}{section*.147}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{12}{section*.148}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{12}{section*.148}\protected@file@percent }
|
||||||
@@ -171,11 +171,11 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{12}{section*.157}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{12}{section*.157}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{12}{section*.158}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{12}{section*.158}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{12}{section*.160}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{12}{section*.160}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{12}{section*.161}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{13}{section*.161}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{12}{section*.162}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{13}{section*.162}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2.6}Instruction vaen}{12}{section.2.6}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {2.6}Instruction vaen}{13}{section.2.6}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{12}{section*.164}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{13}{section*.164}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{12}{section*.165}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{13}{section*.165}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{13}{section*.166}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{13}{section*.166}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{13}{section*.167}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{13}{section*.167}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{13}{section*.168}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{13}{section*.168}\protected@file@percent }
|
||||||
@@ -189,10 +189,10 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{13}{section*.177}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{13}{section*.177}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{13}{section*.178}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{13}{section*.178}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{13}{section*.180}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{13}{section*.180}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{13}{section*.181}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{14}{section*.181}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{13}{section*.182}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{14}{section*.182}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2.8}Instruction procédure}{13}{section.2.8}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {2.8}Instruction procédure}{14}{section.2.8}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{13}{section*.184}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{14}{section*.184}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{14}{section*.185}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{14}{section*.185}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{14}{section*.186}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{14}{section*.186}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{14}{section*.187}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{14}{section*.187}\protected@file@percent }
|
||||||
@@ -206,9 +206,9 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{14}{section*.196}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{14}{section*.196}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{14}{section*.197}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{14}{section*.197}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{14}{section*.198}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{14}{section*.198}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{14}{section*.200}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{15}{section*.200}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{14}{section*.201}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{15}{section*.201}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{14}{section*.202}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{15}{section*.202}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {section}{\numberline {2.10}Commande liste}{15}{section.2.10}\protected@file@percent }
|
\@writefile{toc}{\contentsline {section}{\numberline {2.10}Commande liste}{15}{section.2.10}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Titre : }{15}{section*.204}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{15}{section*.204}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{15}{section*.205}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{15}{section*.205}\protected@file@percent }
|
||||||
@@ -223,10 +223,55 @@
|
|||||||
\@writefile{toc}{\contentsline {paragraph}{Récit : }{15}{section*.215}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{15}{section*.215}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{15}{section*.216}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{15}{section*.216}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{15}{section*.217}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{15}{section*.217}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Afin que : }{15}{section*.218}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Afin que : }{16}{section*.218}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{15}{section*.220}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{16}{section*.220}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Alors : }{15}{section*.221}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{16}{section*.221}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{16}{section*.222}\protected@file@percent }
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{16}{section*.222}\protected@file@percent }
|
||||||
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Récits d'utilisation proposés lors de l'itération 3}{17}{chapter.3}\protected@file@percent }
|
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Récits d'utilisation proposés lors de l'itération 3}{17}{chapter.3}\protected@file@percent }
|
||||||
\@writefile{lof}{\addvspace {10\p@ }}
|
\@writefile{lof}{\addvspace {10\p@ }}
|
||||||
\@writefile{lot}{\addvspace {10\p@ }}
|
\@writefile{lot}{\addvspace {10\p@ }}
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Commande sauve}{17}{section.3.1}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{17}{section*.224}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{17}{section*.225}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{17}{section*.226}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{17}{section*.227}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{17}{section*.228}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{17}{section*.230}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{17}{section*.231}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{17}{section*.232}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Commande charge}{18}{section.3.2}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{18}{section*.234}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{18}{section*.235}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{18}{section*.236}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{18}{section*.237}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{18}{section*.238}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{À partir du fait : }{18}{section*.240}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{18}{section*.241}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{18}{section*.242}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Instruction si... vaen}{18}{section.3.3}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{18}{section*.244}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{18}{section*.245}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{18}{section*.246}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{18}{section*.247}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{18}{section*.248}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{19}{section*.250}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{19}{section*.251}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{19}{section*.252}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {3.4}Instruction procedure}{19}{section.3.4}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{19}{section*.254}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{19}{section*.255}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{19}{section*.256}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{19}{section*.257}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{19}{section*.258}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{19}{section*.260}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{19}{section*.261}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{19}{section*.262}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {section}{\numberline {3.5}Instruction retour}{19}{section.3.5}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Titre : }{19}{section*.264}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Récit : }{19}{section*.265}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{En tant que : }{19}{section*.266}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Je souhaite : }{20}{section*.267}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Afin de : }{20}{section*.268}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{À partir de : }{20}{section*.270}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Alors : }{20}{section*.271}\protected@file@percent }
|
||||||
|
\@writefile{toc}{\contentsline {paragraph}{Enfin : }{20}{section*.272}\protected@file@percent }
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 20.6.29) (preloaded format=pdflatex 2020.9.17) 25 MAY 2021 23:22
|
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 20.6.29) (preloaded format=pdflatex 2020.9.17) 26 MAY 2021 09:03
|
||||||
entering extended mode
|
entering extended mode
|
||||||
**./specificationsDetaillees.tex
|
**./specificationsDetaillees.tex
|
||||||
(specificationsDetaillees.tex
|
(specificationsDetaillees.tex
|
||||||
@@ -377,7 +377,7 @@ LaTeX Font Info: Trying to load font information for T1+pag on input line 26
|
|||||||
("C:\Program Files\MiKTeX\tex/latex/psnfss\t1pag.fd"
|
("C:\Program Files\MiKTeX\tex/latex/psnfss\t1pag.fd"
|
||||||
File: t1pag.fd 2001/06/04 font definitions for T1/pag.
|
File: t1pag.fd 2001/06/04 font definitions for T1/pag.
|
||||||
)
|
)
|
||||||
<./img/logoiut.png, id=91, 251.43938pt x 159.59625pt>
|
<./img/logoiut.png, id=123, 251.43938pt x 159.59625pt>
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 36.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 36.
|
||||||
@@ -393,7 +393,18 @@ LaTeX Font Info: Font shape `T1/pag/bx/n' in size <24.88> not available
|
|||||||
LaTeX Font Info: Font shape `T1/pag/b/n' in size <24.88> not available
|
LaTeX Font Info: Font shape `T1/pag/b/n' in size <24.88> not available
|
||||||
(Font) Font shape `T1/pag/db/n' tried instead on input line 65.
|
(Font) Font shape `T1/pag/db/n' tried instead on input line 65.
|
||||||
|
|
||||||
(specificationsDetaillees.toc)
|
(specificationsDetaillees.toc
|
||||||
|
LaTeX Font Info: Font shape `T1/pag/bx/n' in size <12> not available
|
||||||
|
(Font) Font shape `T1/pag/b/n' tried instead on input line 2.
|
||||||
|
LaTeX Font Info: Font shape `T1/pag/b/n' in size <12> not available
|
||||||
|
(Font) Font shape `T1/pag/db/n' tried instead on input line 2.
|
||||||
|
LaTeX Font Info: External font `cmex10' loaded for size
|
||||||
|
(Font) <12> on input line 3.
|
||||||
|
LaTeX Font Info: External font `cmex10' loaded for size
|
||||||
|
(Font) <8> on input line 3.
|
||||||
|
LaTeX Font Info: External font `cmex10' loaded for size
|
||||||
|
(Font) <6> on input line 3.
|
||||||
|
)
|
||||||
\tf@toc=\write4
|
\tf@toc=\write4
|
||||||
\openout4 = `specificationsDetaillees.toc'.
|
\openout4 = `specificationsDetaillees.toc'.
|
||||||
|
|
||||||
@@ -417,37 +428,33 @@ LaTeX Font Info: Font shape `T1/pag/bx/n' in size <14.4> not available
|
|||||||
(Font) Font shape `T1/pag/b/n' tried instead on input line 3.
|
(Font) Font shape `T1/pag/b/n' tried instead on input line 3.
|
||||||
LaTeX Font Info: Font shape `T1/pag/b/n' in size <14.4> not available
|
LaTeX Font Info: Font shape `T1/pag/b/n' in size <14.4> not available
|
||||||
(Font) Font shape `T1/pag/db/n' tried instead on input line 3.
|
(Font) Font shape `T1/pag/db/n' tried instead on input line 3.
|
||||||
LaTeX Font Info: Font shape `T1/pag/bx/n' in size <12> not available
|
) [3
|
||||||
(Font) Font shape `T1/pag/b/n' tried instead on input line 5.
|
|
||||||
LaTeX Font Info: Font shape `T1/pag/b/n' in size <12> not available
|
|
||||||
(Font) Font shape `T1/pag/db/n' tried instead on input line 5.
|
|
||||||
) (iteration1/userStoryCommandeDebut.tex
|
|
||||||
[3
|
|
||||||
|
|
||||||
]
|
] (iteration1/userStoryCommandeDebut.tex
|
||||||
LaTeX Font Info: Trying to load font information for T1+cmtt on input line 1
|
LaTeX Font Info: Trying to load font information for T1+cmtt on input line 1
|
||||||
3.
|
3.
|
||||||
|
|
||||||
("C:\Program Files\MiKTeX\tex/latex/base\t1cmtt.fd"
|
("C:\Program Files\MiKTeX\tex/latex/base\t1cmtt.fd"
|
||||||
File: t1cmtt.fd 2019/12/16 v2.5j Standard LaTeX font definitions
|
File: t1cmtt.fd 2019/12/16 v2.5j Standard LaTeX font definitions
|
||||||
))
|
))
|
||||||
(iteration1/userStoryCommandeFin.tex) (iteration1/userStoryCommandeDefs.tex
|
(iteration1/userStoryCommandeFin.tex) (iteration1/userStoryCommandeDefs.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 7.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 5.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
|
|
||||||
[4]) (iteration1/userStoryCommandeAffiche.tex)
|
[4]) (iteration1/userStoryCommandeAffiche.tex)
|
||||||
(iteration1/userStoryCommandeAfficheExpression.tex
|
(iteration1/userStoryCommandeAfficheExpression.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 8.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 6.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[5])
|
[5])
|
||||||
(iteration1/userStoryCommandeVarChaine.tex)
|
(iteration1/userStoryCommandeVarChaine.tex)
|
||||||
(iteration1/userStoryCommandeVarEntier.tex
|
(iteration1/userStoryCommandeVarEntier.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 6.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 1.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[6]
|
[6]
|
||||||
Overfull \hbox (49.11858pt too wide) in paragraph at lines 13--15
|
Overfull \hbox (49.11858pt too wide) in paragraph at lines 13--15
|
||||||
@@ -463,12 +470,11 @@ Overfull \hbox (16.12218pt too wide) in paragraph at lines 19--22
|
|||||||
/n/10 ,
|
/n/10 ,
|
||||||
[]
|
[]
|
||||||
|
|
||||||
) (iteration1/userStoryExpressionLogique.tex
|
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 7.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 23.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[7]
|
[7]) (iteration1/userStoryExpressionLogique.tex
|
||||||
Overfull \hbox (36.27582pt too wide) in paragraph at lines 12--14
|
Overfull \hbox (36.27582pt too wide) in paragraph at lines 12--14
|
||||||
[]\T1/pag/db/n/12 Afin que : [] \T1/pag/m/n/10 d'exé-cu-ter ou non une branche
|
[]\T1/pag/db/n/12 Afin que : [] \T1/pag/m/n/10 d'exé-cu-ter ou non une branche
|
||||||
du code avec l'ins-truc-tion [][]\T1/cmtt/m/n/10 si <expression> vaen
|
du code avec l'ins-truc-tion [][]\T1/cmtt/m/n/10 si <expression> vaen
|
||||||
@@ -477,28 +483,29 @@ Overfull \hbox (36.27582pt too wide) in paragraph at lines 12--14
|
|||||||
) (iteration1/userStoryExpressionArithmetique.tex
|
) (iteration1/userStoryExpressionArithmetique.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 18.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 10.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[8])
|
[8])
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 97.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 86.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[9]
|
[9]
|
||||||
Chapitre 2.
|
Chapitre 2.
|
||||||
(iteration2/userStoryCommandeEfface.tex) (iteration2/userStoryCommandeLance.tex
|
(iteration2/userStoryCommandeEfface.tex) [10
|
||||||
[10
|
|
||||||
|
|
||||||
]) (iteration2/userStoryCommandeStop.tex) (iteration2/userStoryEtiquette.tex
|
]
|
||||||
|
(iteration2/userStoryCommandeLance.tex) (iteration2/userStoryCommandeStop.tex)
|
||||||
|
(iteration2/userStoryEtiquette.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 7.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 5.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[11]) (iteration2/userStoryInstruction.tex)
|
[11]) (iteration2/userStoryInstruction.tex)
|
||||||
(iteration2/userStoryInstructionVaen.tex
|
(iteration2/userStoryInstructionVaen.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 8.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 1.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[12])
|
[12])
|
||||||
(iteration2/userStoryLanceEtiquette.tex
|
(iteration2/userStoryLanceEtiquette.tex
|
||||||
@@ -507,65 +514,77 @@ Overfull \hbox (2.86092pt too wide) in paragraph at lines 8--9
|
|||||||
argé avec la com-mande lance <éti-quette>
|
argé avec la com-mande lance <éti-quette>
|
||||||
[]
|
[]
|
||||||
|
|
||||||
) (iteration2/userStoryProcedure.tex
|
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 7.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 17.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[13]) (iteration2/userStoryRetour.tex)
|
[13]) (iteration2/userStoryProcedure.tex) (iteration2/userStoryRetour.tex
|
||||||
(iteration2/userStroryListeArgument.tex
|
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 6.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 15.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[14])
|
|
||||||
(iteration2/userStroryListeVoid.tex)
|
[14]) (iteration2/userStroryListeArgument.tex)
|
||||||
|
(iteration2/userStroryListeVoid.tex
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 111.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 14.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[15]
|
[15])
|
||||||
File: ./img/logoiut.png Graphic file (type png)
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
<use ./img/logoiut.png>
|
<use ./img/logoiut.png>
|
||||||
Package pdftex.def Info: ./img/logoiut.png used on input line 111.
|
Package pdftex.def Info: ./img/logoiut.png used on input line 100.
|
||||||
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
[16]
|
[16]
|
||||||
Chapitre 3.
|
Chapitre 3.
|
||||||
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 113.
|
(iteration3/userStoryCommandeSauve.tex) [17
|
||||||
[17
|
|
||||||
|
|
||||||
]
|
]
|
||||||
Package atveryend Info: Empty hook `AfterLastShipout' on input line 113.
|
(iteration3/userStoryCommandeCharge.tex)
|
||||||
|
(iteration3/userStoryInstructionSiVaen.tex
|
||||||
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
|
<use ./img/logoiut.png>
|
||||||
|
Package pdftex.def Info: ./img/logoiut.png used on input line 11.
|
||||||
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
|
[18])
|
||||||
|
(iteration3/userStoryInstructionProcedure.tex)
|
||||||
|
(iteration3/userStoryInstructionRetour.tex
|
||||||
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
|
<use ./img/logoiut.png>
|
||||||
|
Package pdftex.def Info: ./img/logoiut.png used on input line 9.
|
||||||
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
|
[19])
|
||||||
|
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 108.
|
||||||
|
File: ./img/logoiut.png Graphic file (type png)
|
||||||
|
<use ./img/logoiut.png>
|
||||||
|
Package pdftex.def Info: ./img/logoiut.png used on input line 108.
|
||||||
|
(pdftex.def) Requested size: 56.9055pt x 36.11946pt.
|
||||||
|
[20]
|
||||||
|
Package atveryend Info: Empty hook `AfterLastShipout' on input line 108.
|
||||||
|
|
||||||
(specificationsDetaillees.aux)
|
(specificationsDetaillees.aux)
|
||||||
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 113.
|
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 108.
|
||||||
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 113.
|
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 108.
|
||||||
|
Package rerunfilecheck Info: File `specificationsDetaillees.out' has not change
|
||||||
|
d.
|
||||||
Package rerunfilecheck Warning: File `specificationsDetaillees.out' has changed
|
(rerunfilecheck) Checksum: AA86CC517A290ED63ECA19BF3D762351;2108.
|
||||||
.
|
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 108.
|
||||||
(rerunfilecheck) Rerun to get outlines right
|
|
||||||
(rerunfilecheck) or use package `bookmark'.
|
|
||||||
|
|
||||||
Package rerunfilecheck Info: Checksums for `specificationsDetaillees.out':
|
|
||||||
(rerunfilecheck) Before: D2D3CE044A08BB9E736D818C7FE2267B;1566
|
|
||||||
(rerunfilecheck) After: 186AD3639CE2693D6D25469243A4DBE1;1783.
|
|
||||||
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 113.
|
|
||||||
)
|
)
|
||||||
Here is how much of TeX's memory you used:
|
Here is how much of TeX's memory you used:
|
||||||
7923 strings out of 480790
|
8029 strings out of 480790
|
||||||
121423 string characters out of 2907055
|
123593 string characters out of 2907055
|
||||||
399668 words of memory out of 3000000
|
400668 words of memory out of 3000000
|
||||||
23469 multiletter control sequences out of 15000+200000
|
23493 multiletter control sequences out of 15000+200000
|
||||||
573262 words of font info for 48 fonts, out of 3000000 for 9000
|
575700 words of font info for 56 fonts, out of 3000000 for 9000
|
||||||
1141 hyphenation exceptions out of 8191
|
1141 hyphenation exceptions out of 8191
|
||||||
37i,14n,45p,285b,426s stack positions out of 5000i,500n,10000p,200000b,50000s
|
37i,14n,45p,285b,426s stack positions out of 5000i,500n,10000p,200000b,50000s
|
||||||
<C:\Users\madel\AppData\Local\MiKTeX\fonts/pk/ljfour/jknappen/ec/dpi600\ectt
|
<C:\Users\madel\AppData\Local\MiKTeX\fonts/pk/ljfour/jknappen/ec/dpi600\ectt
|
||||||
1000.pk>{C:/Program Files/MiKTeX/fonts/enc/dvips/base/8r.enc}<C:/Program Files/
|
1000.pk>{C:/Program Files/MiKTeX/fonts/enc/dvips/base/8r.enc}<C:/Program Files/
|
||||||
MiKTeX/fonts/type1/urw/avantgar/uagd8a.pfb><C:/Program Files/MiKTeX/fonts/type1
|
MiKTeX/fonts/type1/urw/avantgar/uagd8a.pfb><C:/Program Files/MiKTeX/fonts/type1
|
||||||
/urw/avantgar/uagk8a.pfb>
|
/urw/avantgar/uagk8a.pfb>
|
||||||
Output written on specificationsDetaillees.pdf (18 pages, 111266 bytes).
|
Output written on specificationsDetaillees.pdf (21 pages, 132364 bytes).
|
||||||
PDF statistics:
|
PDF statistics:
|
||||||
495 PDF objects out of 1000 (max. 8388607)
|
628 PDF objects out of 1000 (max. 8388607)
|
||||||
265 named destinations out of 1000 (max. 500000)
|
323 named destinations out of 1000 (max. 500000)
|
||||||
182 words of extra memory for PDF output out of 10000 (max. 10000000)
|
246 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||||
|
|
||||||
|
|||||||
@@ -23,3 +23,8 @@
|
|||||||
\BOOKMARK [1][-]{section.2.10}{Commande liste}{chapter.2}% 23
|
\BOOKMARK [1][-]{section.2.10}{Commande liste}{chapter.2}% 23
|
||||||
\BOOKMARK [1][-]{section.2.11}{Instruction}{chapter.2}% 24
|
\BOOKMARK [1][-]{section.2.11}{Instruction}{chapter.2}% 24
|
||||||
\BOOKMARK [0][-]{chapter.3}{R\351cits d'utilisation propos\351s lors de l'it\351ration 3}{}% 25
|
\BOOKMARK [0][-]{chapter.3}{R\351cits d'utilisation propos\351s lors de l'it\351ration 3}{}% 25
|
||||||
|
\BOOKMARK [1][-]{section.3.1}{Commande sauve}{chapter.3}% 26
|
||||||
|
\BOOKMARK [1][-]{section.3.2}{Commande charge}{chapter.3}% 27
|
||||||
|
\BOOKMARK [1][-]{section.3.3}{Instruction si... vaen}{chapter.3}% 28
|
||||||
|
\BOOKMARK [1][-]{section.3.4}{Instruction procedure}{chapter.3}% 29
|
||||||
|
\BOOKMARK [1][-]{section.3.5}{Instruction retour}{chapter.3}% 30
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -68,35 +68,24 @@
|
|||||||
\Large
|
\Large
|
||||||
Texte. Blablabla
|
Texte. Blablabla
|
||||||
|
|
||||||
\normalsize
|
|
||||||
\chapter{Récits d'utilisation proposés lors de l'itération 1}
|
|
||||||
|
|
||||||
\footnotesize
|
\footnotesize
|
||||||
|
\chapter{Récits d'utilisation proposés lors de l'itération 1}
|
||||||
\input{./iteration1/userStoryCommande.tex}
|
\input{./iteration1/userStoryCommande.tex}
|
||||||
|
\newpage
|
||||||
\input{./iteration1/userStoryCommandeDebut.tex}
|
\input{./iteration1/userStoryCommandeDebut.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryCommandeFin.tex}
|
\input{./iteration1/userStoryCommandeFin.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryCommandeDefs.tex}
|
\input{./iteration1/userStoryCommandeDefs.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryCommandeAffiche.tex}
|
\input{./iteration1/userStoryCommandeAffiche.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryCommandeAfficheExpression.tex}
|
\input{./iteration1/userStoryCommandeAfficheExpression.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryCommandeVarChaine.tex}
|
\input{./iteration1/userStoryCommandeVarChaine.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryCommandeVarEntier.tex}
|
\input{./iteration1/userStoryCommandeVarEntier.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryConcatenation.tex}
|
\input{./iteration1/userStoryConcatenation.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryExpressionLogique.tex}
|
\input{./iteration1/userStoryExpressionLogique.tex}
|
||||||
|
|
||||||
\input{./iteration1/userStoryExpressionArithmetique.tex}
|
\input{./iteration1/userStoryExpressionArithmetique.tex}
|
||||||
|
|
||||||
\chapter{Récits d'utilisation proposés lors de l'itération 2}
|
\chapter{Récits d'utilisation proposés lors de l'itération 2}
|
||||||
|
|
||||||
\input{./iteration2/userStoryCommandeEfface.tex}
|
\input{./iteration2/userStoryCommandeEfface.tex}
|
||||||
|
\newpage
|
||||||
\input{./iteration2/userStoryCommandeLance.tex}
|
\input{./iteration2/userStoryCommandeLance.tex}
|
||||||
\input{./iteration2/userStoryCommandeStop.tex}
|
\input{./iteration2/userStoryCommandeStop.tex}
|
||||||
\input{./iteration2/userStoryEtiquette.tex}
|
\input{./iteration2/userStoryEtiquette.tex}
|
||||||
@@ -109,5 +98,11 @@
|
|||||||
\input{./iteration2/userStroryListeVoid.tex}
|
\input{./iteration2/userStroryListeVoid.tex}
|
||||||
|
|
||||||
\chapter{Récits d'utilisation proposés lors de l'itération 3}
|
\chapter{Récits d'utilisation proposés lors de l'itération 3}
|
||||||
|
\input{./iteration3/userStoryCommandeSauve.tex}
|
||||||
|
\newpage
|
||||||
|
\input{./iteration3/userStoryCommandeCharge.tex}
|
||||||
|
\input{./iteration3/userStoryInstructionSiVaen.tex}
|
||||||
|
\input{./iteration3/userStoryInstructionProcedure.tex}
|
||||||
|
\input{./iteration3/userStoryInstructionRetour.tex}
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|||||||
@@ -9,9 +9,9 @@
|
|||||||
\contentsline {paragraph}{À partir du fait : }{3}{section*.10}%
|
\contentsline {paragraph}{À partir du fait : }{3}{section*.10}%
|
||||||
\contentsline {paragraph}{Alors : }{3}{section*.11}%
|
\contentsline {paragraph}{Alors : }{3}{section*.11}%
|
||||||
\contentsline {paragraph}{Enfin : }{3}{section*.12}%
|
\contentsline {paragraph}{Enfin : }{3}{section*.12}%
|
||||||
\contentsline {section}{\numberline {1.2}Commande debut}{3}{section.1.2}%
|
\contentsline {section}{\numberline {1.2}Commande debut}{4}{section.1.2}%
|
||||||
\contentsline {paragraph}{Titre : }{3}{section*.14}%
|
\contentsline {paragraph}{Titre : }{4}{section*.14}%
|
||||||
\contentsline {paragraph}{Récit : }{3}{section*.15}%
|
\contentsline {paragraph}{Récit : }{4}{section*.15}%
|
||||||
\contentsline {paragraph}{En tant que : }{4}{section*.16}%
|
\contentsline {paragraph}{En tant que : }{4}{section*.16}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{4}{section*.17}%
|
\contentsline {paragraph}{Je souhaite : }{4}{section*.17}%
|
||||||
\contentsline {paragraph}{Afin de : }{4}{section*.18}%
|
\contentsline {paragraph}{Afin de : }{4}{section*.18}%
|
||||||
@@ -27,9 +27,9 @@
|
|||||||
\contentsline {paragraph}{À partir de : }{4}{section*.30}%
|
\contentsline {paragraph}{À partir de : }{4}{section*.30}%
|
||||||
\contentsline {paragraph}{Alors : }{4}{section*.31}%
|
\contentsline {paragraph}{Alors : }{4}{section*.31}%
|
||||||
\contentsline {paragraph}{Enfin : }{4}{section*.32}%
|
\contentsline {paragraph}{Enfin : }{4}{section*.32}%
|
||||||
\contentsline {section}{\numberline {1.4}Commande defs}{4}{section.1.4}%
|
\contentsline {section}{\numberline {1.4}Commande defs}{5}{section.1.4}%
|
||||||
\contentsline {paragraph}{Titre : }{4}{section*.34}%
|
\contentsline {paragraph}{Titre : }{5}{section*.34}%
|
||||||
\contentsline {paragraph}{Récit : }{4}{section*.35}%
|
\contentsline {paragraph}{Récit : }{5}{section*.35}%
|
||||||
\contentsline {paragraph}{En tant que : }{5}{section*.36}%
|
\contentsline {paragraph}{En tant que : }{5}{section*.36}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{5}{section*.37}%
|
\contentsline {paragraph}{Je souhaite : }{5}{section*.37}%
|
||||||
\contentsline {paragraph}{Afin de : }{5}{section*.38}%
|
\contentsline {paragraph}{Afin de : }{5}{section*.38}%
|
||||||
@@ -45,9 +45,9 @@
|
|||||||
\contentsline {paragraph}{À partir du fait : }{5}{section*.50}%
|
\contentsline {paragraph}{À partir du fait : }{5}{section*.50}%
|
||||||
\contentsline {paragraph}{Alors : }{5}{section*.51}%
|
\contentsline {paragraph}{Alors : }{5}{section*.51}%
|
||||||
\contentsline {paragraph}{Enfin : }{5}{section*.52}%
|
\contentsline {paragraph}{Enfin : }{5}{section*.52}%
|
||||||
\contentsline {section}{\numberline {1.6}Commande affiche avec une expression}{5}{section.1.6}%
|
\contentsline {section}{\numberline {1.6}Commande affiche avec une expression}{6}{section.1.6}%
|
||||||
\contentsline {paragraph}{Titre : }{5}{section*.54}%
|
\contentsline {paragraph}{Titre : }{6}{section*.54}%
|
||||||
\contentsline {paragraph}{Récit : }{5}{section*.55}%
|
\contentsline {paragraph}{Récit : }{6}{section*.55}%
|
||||||
\contentsline {paragraph}{En tant que : }{6}{section*.56}%
|
\contentsline {paragraph}{En tant que : }{6}{section*.56}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{6}{section*.57}%
|
\contentsline {paragraph}{Je souhaite : }{6}{section*.57}%
|
||||||
\contentsline {paragraph}{Afin de : }{6}{section*.58}%
|
\contentsline {paragraph}{Afin de : }{6}{section*.58}%
|
||||||
@@ -62,9 +62,9 @@
|
|||||||
\contentsline {paragraph}{Afin de : }{6}{section*.68}%
|
\contentsline {paragraph}{Afin de : }{6}{section*.68}%
|
||||||
\contentsline {paragraph}{À partir du fait : }{6}{section*.70}%
|
\contentsline {paragraph}{À partir du fait : }{6}{section*.70}%
|
||||||
\contentsline {paragraph}{Alors : }{6}{section*.71}%
|
\contentsline {paragraph}{Alors : }{6}{section*.71}%
|
||||||
\contentsline {paragraph}{Enfin : }{6}{section*.72}%
|
\contentsline {paragraph}{Enfin : }{7}{section*.72}%
|
||||||
\contentsline {section}{\numberline {1.8}Commande var pour un entier}{6}{section.1.8}%
|
\contentsline {section}{\numberline {1.8}Commande var pour un entier}{7}{section.1.8}%
|
||||||
\contentsline {paragraph}{Titre : }{6}{section*.74}%
|
\contentsline {paragraph}{Titre : }{7}{section*.74}%
|
||||||
\contentsline {paragraph}{Récit : }{7}{section*.75}%
|
\contentsline {paragraph}{Récit : }{7}{section*.75}%
|
||||||
\contentsline {paragraph}{En tant que : }{7}{section*.76}%
|
\contentsline {paragraph}{En tant que : }{7}{section*.76}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{7}{section*.77}%
|
\contentsline {paragraph}{Je souhaite : }{7}{section*.77}%
|
||||||
@@ -79,8 +79,8 @@
|
|||||||
\contentsline {paragraph}{Je souhaite : }{7}{section*.87}%
|
\contentsline {paragraph}{Je souhaite : }{7}{section*.87}%
|
||||||
\contentsline {paragraph}{Afin de : }{7}{section*.88}%
|
\contentsline {paragraph}{Afin de : }{7}{section*.88}%
|
||||||
\contentsline {paragraph}{À partir de : }{7}{section*.90}%
|
\contentsline {paragraph}{À partir de : }{7}{section*.90}%
|
||||||
\contentsline {paragraph}{Alors : }{7}{section*.91}%
|
\contentsline {paragraph}{Alors : }{8}{section*.91}%
|
||||||
\contentsline {paragraph}{Enfin : }{7}{section*.92}%
|
\contentsline {paragraph}{Enfin : }{8}{section*.92}%
|
||||||
\contentsline {section}{\numberline {1.10}Expression logique}{8}{section.1.10}%
|
\contentsline {section}{\numberline {1.10}Expression logique}{8}{section.1.10}%
|
||||||
\contentsline {paragraph}{Titre : }{8}{section*.94}%
|
\contentsline {paragraph}{Titre : }{8}{section*.94}%
|
||||||
\contentsline {paragraph}{Récit : }{8}{section*.95}%
|
\contentsline {paragraph}{Récit : }{8}{section*.95}%
|
||||||
@@ -94,8 +94,8 @@
|
|||||||
\contentsline {paragraph}{Titre : }{8}{section*.104}%
|
\contentsline {paragraph}{Titre : }{8}{section*.104}%
|
||||||
\contentsline {paragraph}{Récit : }{8}{section*.105}%
|
\contentsline {paragraph}{Récit : }{8}{section*.105}%
|
||||||
\contentsline {paragraph}{En tant que : }{8}{section*.106}%
|
\contentsline {paragraph}{En tant que : }{8}{section*.106}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{8}{section*.107}%
|
\contentsline {paragraph}{Je souhaite : }{9}{section*.107}%
|
||||||
\contentsline {paragraph}{Afin que : }{8}{section*.108}%
|
\contentsline {paragraph}{Afin que : }{9}{section*.108}%
|
||||||
\contentsline {paragraph}{À partir de : }{9}{section*.110}%
|
\contentsline {paragraph}{À partir de : }{9}{section*.110}%
|
||||||
\contentsline {paragraph}{Alors : }{9}{section*.111}%
|
\contentsline {paragraph}{Alors : }{9}{section*.111}%
|
||||||
\contentsline {paragraph}{Enfin : }{9}{section*.112}%
|
\contentsline {paragraph}{Enfin : }{9}{section*.112}%
|
||||||
@@ -109,10 +109,10 @@
|
|||||||
\contentsline {paragraph}{À partir de : }{10}{section*.120}%
|
\contentsline {paragraph}{À partir de : }{10}{section*.120}%
|
||||||
\contentsline {paragraph}{Alors : }{10}{section*.121}%
|
\contentsline {paragraph}{Alors : }{10}{section*.121}%
|
||||||
\contentsline {paragraph}{Enfin : }{10}{section*.122}%
|
\contentsline {paragraph}{Enfin : }{10}{section*.122}%
|
||||||
\contentsline {section}{\numberline {2.2}Commande lance}{10}{section.2.2}%
|
\contentsline {section}{\numberline {2.2}Commande lance}{11}{section.2.2}%
|
||||||
\contentsline {paragraph}{Titre : }{10}{section*.124}%
|
\contentsline {paragraph}{Titre : }{11}{section*.124}%
|
||||||
\contentsline {paragraph}{Récit : }{10}{section*.125}%
|
\contentsline {paragraph}{Récit : }{11}{section*.125}%
|
||||||
\contentsline {paragraph}{En tant que : }{10}{section*.126}%
|
\contentsline {paragraph}{En tant que : }{11}{section*.126}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{11}{section*.127}%
|
\contentsline {paragraph}{Je souhaite : }{11}{section*.127}%
|
||||||
\contentsline {paragraph}{Afin de : }{11}{section*.128}%
|
\contentsline {paragraph}{Afin de : }{11}{section*.128}%
|
||||||
\contentsline {paragraph}{À partir de : }{11}{section*.130}%
|
\contentsline {paragraph}{À partir de : }{11}{section*.130}%
|
||||||
@@ -126,10 +126,10 @@
|
|||||||
\contentsline {paragraph}{Afin de : }{11}{section*.138}%
|
\contentsline {paragraph}{Afin de : }{11}{section*.138}%
|
||||||
\contentsline {paragraph}{À partir du fait : }{11}{section*.140}%
|
\contentsline {paragraph}{À partir du fait : }{11}{section*.140}%
|
||||||
\contentsline {paragraph}{Alors : }{11}{section*.141}%
|
\contentsline {paragraph}{Alors : }{11}{section*.141}%
|
||||||
\contentsline {paragraph}{Enfin : }{11}{section*.142}%
|
\contentsline {paragraph}{Enfin : }{12}{section*.142}%
|
||||||
\contentsline {section}{\numberline {2.4}Etiquette}{11}{section.2.4}%
|
\contentsline {section}{\numberline {2.4}Etiquette}{12}{section.2.4}%
|
||||||
\contentsline {paragraph}{Titre : }{11}{section*.144}%
|
\contentsline {paragraph}{Titre : }{12}{section*.144}%
|
||||||
\contentsline {paragraph}{Récit : }{11}{section*.145}%
|
\contentsline {paragraph}{Récit : }{12}{section*.145}%
|
||||||
\contentsline {paragraph}{En tant que : }{12}{section*.146}%
|
\contentsline {paragraph}{En tant que : }{12}{section*.146}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{12}{section*.147}%
|
\contentsline {paragraph}{Je souhaite : }{12}{section*.147}%
|
||||||
\contentsline {paragraph}{Afin de : }{12}{section*.148}%
|
\contentsline {paragraph}{Afin de : }{12}{section*.148}%
|
||||||
@@ -143,11 +143,11 @@
|
|||||||
\contentsline {paragraph}{Je souhaite : }{12}{section*.157}%
|
\contentsline {paragraph}{Je souhaite : }{12}{section*.157}%
|
||||||
\contentsline {paragraph}{Afin de : }{12}{section*.158}%
|
\contentsline {paragraph}{Afin de : }{12}{section*.158}%
|
||||||
\contentsline {paragraph}{À partir de : }{12}{section*.160}%
|
\contentsline {paragraph}{À partir de : }{12}{section*.160}%
|
||||||
\contentsline {paragraph}{Alors : }{12}{section*.161}%
|
\contentsline {paragraph}{Alors : }{13}{section*.161}%
|
||||||
\contentsline {paragraph}{Enfin : }{12}{section*.162}%
|
\contentsline {paragraph}{Enfin : }{13}{section*.162}%
|
||||||
\contentsline {section}{\numberline {2.6}Instruction vaen}{12}{section.2.6}%
|
\contentsline {section}{\numberline {2.6}Instruction vaen}{13}{section.2.6}%
|
||||||
\contentsline {paragraph}{Titre : }{12}{section*.164}%
|
\contentsline {paragraph}{Titre : }{13}{section*.164}%
|
||||||
\contentsline {paragraph}{Récit : }{12}{section*.165}%
|
\contentsline {paragraph}{Récit : }{13}{section*.165}%
|
||||||
\contentsline {paragraph}{En tant que : }{13}{section*.166}%
|
\contentsline {paragraph}{En tant que : }{13}{section*.166}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{13}{section*.167}%
|
\contentsline {paragraph}{Je souhaite : }{13}{section*.167}%
|
||||||
\contentsline {paragraph}{Afin de : }{13}{section*.168}%
|
\contentsline {paragraph}{Afin de : }{13}{section*.168}%
|
||||||
@@ -161,10 +161,10 @@
|
|||||||
\contentsline {paragraph}{Je souhaite : }{13}{section*.177}%
|
\contentsline {paragraph}{Je souhaite : }{13}{section*.177}%
|
||||||
\contentsline {paragraph}{Afin de : }{13}{section*.178}%
|
\contentsline {paragraph}{Afin de : }{13}{section*.178}%
|
||||||
\contentsline {paragraph}{À partir de : }{13}{section*.180}%
|
\contentsline {paragraph}{À partir de : }{13}{section*.180}%
|
||||||
\contentsline {paragraph}{Alors : }{13}{section*.181}%
|
\contentsline {paragraph}{Alors : }{14}{section*.181}%
|
||||||
\contentsline {paragraph}{Enfin : }{13}{section*.182}%
|
\contentsline {paragraph}{Enfin : }{14}{section*.182}%
|
||||||
\contentsline {section}{\numberline {2.8}Instruction procédure}{13}{section.2.8}%
|
\contentsline {section}{\numberline {2.8}Instruction procédure}{14}{section.2.8}%
|
||||||
\contentsline {paragraph}{Titre : }{13}{section*.184}%
|
\contentsline {paragraph}{Titre : }{14}{section*.184}%
|
||||||
\contentsline {paragraph}{Récit : }{14}{section*.185}%
|
\contentsline {paragraph}{Récit : }{14}{section*.185}%
|
||||||
\contentsline {paragraph}{En tant que : }{14}{section*.186}%
|
\contentsline {paragraph}{En tant que : }{14}{section*.186}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{14}{section*.187}%
|
\contentsline {paragraph}{Je souhaite : }{14}{section*.187}%
|
||||||
@@ -178,9 +178,9 @@
|
|||||||
\contentsline {paragraph}{En tant que : }{14}{section*.196}%
|
\contentsline {paragraph}{En tant que : }{14}{section*.196}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{14}{section*.197}%
|
\contentsline {paragraph}{Je souhaite : }{14}{section*.197}%
|
||||||
\contentsline {paragraph}{Afin de : }{14}{section*.198}%
|
\contentsline {paragraph}{Afin de : }{14}{section*.198}%
|
||||||
\contentsline {paragraph}{À partir de : }{14}{section*.200}%
|
\contentsline {paragraph}{À partir de : }{15}{section*.200}%
|
||||||
\contentsline {paragraph}{Alors : }{14}{section*.201}%
|
\contentsline {paragraph}{Alors : }{15}{section*.201}%
|
||||||
\contentsline {paragraph}{Enfin : }{14}{section*.202}%
|
\contentsline {paragraph}{Enfin : }{15}{section*.202}%
|
||||||
\contentsline {section}{\numberline {2.10}Commande liste}{15}{section.2.10}%
|
\contentsline {section}{\numberline {2.10}Commande liste}{15}{section.2.10}%
|
||||||
\contentsline {paragraph}{Titre : }{15}{section*.204}%
|
\contentsline {paragraph}{Titre : }{15}{section*.204}%
|
||||||
\contentsline {paragraph}{Récit : }{15}{section*.205}%
|
\contentsline {paragraph}{Récit : }{15}{section*.205}%
|
||||||
@@ -195,8 +195,53 @@
|
|||||||
\contentsline {paragraph}{Récit : }{15}{section*.215}%
|
\contentsline {paragraph}{Récit : }{15}{section*.215}%
|
||||||
\contentsline {paragraph}{En tant que : }{15}{section*.216}%
|
\contentsline {paragraph}{En tant que : }{15}{section*.216}%
|
||||||
\contentsline {paragraph}{Je souhaite : }{15}{section*.217}%
|
\contentsline {paragraph}{Je souhaite : }{15}{section*.217}%
|
||||||
\contentsline {paragraph}{Afin que : }{15}{section*.218}%
|
\contentsline {paragraph}{Afin que : }{16}{section*.218}%
|
||||||
\contentsline {paragraph}{À partir de : }{15}{section*.220}%
|
\contentsline {paragraph}{À partir de : }{16}{section*.220}%
|
||||||
\contentsline {paragraph}{Alors : }{15}{section*.221}%
|
\contentsline {paragraph}{Alors : }{16}{section*.221}%
|
||||||
\contentsline {paragraph}{Enfin : }{16}{section*.222}%
|
\contentsline {paragraph}{Enfin : }{16}{section*.222}%
|
||||||
\contentsline {chapter}{\numberline {3}Récits d'utilisation proposés lors de l'itération 3}{17}{chapter.3}%
|
\contentsline {chapter}{\numberline {3}Récits d'utilisation proposés lors de l'itération 3}{17}{chapter.3}%
|
||||||
|
\contentsline {section}{\numberline {3.1}Commande sauve}{17}{section.3.1}%
|
||||||
|
\contentsline {paragraph}{Titre : }{17}{section*.224}%
|
||||||
|
\contentsline {paragraph}{Récit : }{17}{section*.225}%
|
||||||
|
\contentsline {paragraph}{En tant que : }{17}{section*.226}%
|
||||||
|
\contentsline {paragraph}{Je souhaite : }{17}{section*.227}%
|
||||||
|
\contentsline {paragraph}{Afin de : }{17}{section*.228}%
|
||||||
|
\contentsline {paragraph}{À partir du fait : }{17}{section*.230}%
|
||||||
|
\contentsline {paragraph}{Alors : }{17}{section*.231}%
|
||||||
|
\contentsline {paragraph}{Enfin : }{17}{section*.232}%
|
||||||
|
\contentsline {section}{\numberline {3.2}Commande charge}{18}{section.3.2}%
|
||||||
|
\contentsline {paragraph}{Titre : }{18}{section*.234}%
|
||||||
|
\contentsline {paragraph}{Récit : }{18}{section*.235}%
|
||||||
|
\contentsline {paragraph}{En tant que : }{18}{section*.236}%
|
||||||
|
\contentsline {paragraph}{Je souhaite : }{18}{section*.237}%
|
||||||
|
\contentsline {paragraph}{Afin de : }{18}{section*.238}%
|
||||||
|
\contentsline {paragraph}{À partir du fait : }{18}{section*.240}%
|
||||||
|
\contentsline {paragraph}{Alors : }{18}{section*.241}%
|
||||||
|
\contentsline {paragraph}{Enfin : }{18}{section*.242}%
|
||||||
|
\contentsline {section}{\numberline {3.3}Instruction si... vaen}{18}{section.3.3}%
|
||||||
|
\contentsline {paragraph}{Titre : }{18}{section*.244}%
|
||||||
|
\contentsline {paragraph}{Récit : }{18}{section*.245}%
|
||||||
|
\contentsline {paragraph}{En tant que : }{18}{section*.246}%
|
||||||
|
\contentsline {paragraph}{Je souhaite : }{18}{section*.247}%
|
||||||
|
\contentsline {paragraph}{Afin de : }{18}{section*.248}%
|
||||||
|
\contentsline {paragraph}{À partir de : }{19}{section*.250}%
|
||||||
|
\contentsline {paragraph}{Alors : }{19}{section*.251}%
|
||||||
|
\contentsline {paragraph}{Enfin : }{19}{section*.252}%
|
||||||
|
\contentsline {section}{\numberline {3.4}Instruction procedure}{19}{section.3.4}%
|
||||||
|
\contentsline {paragraph}{Titre : }{19}{section*.254}%
|
||||||
|
\contentsline {paragraph}{Récit : }{19}{section*.255}%
|
||||||
|
\contentsline {paragraph}{En tant que : }{19}{section*.256}%
|
||||||
|
\contentsline {paragraph}{Je souhaite : }{19}{section*.257}%
|
||||||
|
\contentsline {paragraph}{Afin de : }{19}{section*.258}%
|
||||||
|
\contentsline {paragraph}{À partir de : }{19}{section*.260}%
|
||||||
|
\contentsline {paragraph}{Alors : }{19}{section*.261}%
|
||||||
|
\contentsline {paragraph}{Enfin : }{19}{section*.262}%
|
||||||
|
\contentsline {section}{\numberline {3.5}Instruction retour}{19}{section.3.5}%
|
||||||
|
\contentsline {paragraph}{Titre : }{19}{section*.264}%
|
||||||
|
\contentsline {paragraph}{Récit : }{19}{section*.265}%
|
||||||
|
\contentsline {paragraph}{En tant que : }{19}{section*.266}%
|
||||||
|
\contentsline {paragraph}{Je souhaite : }{20}{section*.267}%
|
||||||
|
\contentsline {paragraph}{Afin de : }{20}{section*.268}%
|
||||||
|
\contentsline {paragraph}{À partir de : }{20}{section*.270}%
|
||||||
|
\contentsline {paragraph}{Alors : }{20}{section*.271}%
|
||||||
|
\contentsline {paragraph}{Enfin : }{20}{section*.272}%
|
||||||
|
|||||||
Reference in New Issue
Block a user