Added tools to make it easier to create a good PDF

This commit is contained in:
2023-05-09 10:49:48 +02:00
parent a75620a67e
commit 985d1bd71d
276 changed files with 194141 additions and 4 deletions
+70 -1
View File
@@ -2108,4 +2108,73 @@ Je ne suis pas un graphiste et ca se voit '^^.
Je pense que comme il me reste un peu de temps aujourd'hui, je vais faire un peu de documentation de la partie récupèration d'images. En effet, je pense que je n'aurai plus besoin de changer grand chose à ce niveau. Mais je ne ferai pas la partie analyse fonctionnelle car l'interface n'est clairement pas terminée.
En fait j'avais oublié mais j'ai eu un rendez vous médical du coup je n'ai pas eu trop le temps de faire la doc que je voulais. Mais au moins je pense avoir finit mon travail sur le poster et le abstract en Anglais qui sont les deux gros livrables à venir.
En fait j'avais oublié mais j'ai eu un rendez vous médical du coup je n'ai pas eu trop le temps de faire la doc que je voulais. Mais au moins je pense avoir finit mon travail sur le poster et le abstract en Anglais qui sont les deux gros livrables à venir.
## Mardi 9 Mai 2023
Bon je viens de me rendre compte que apparemment on doit rendre l'abstract anglais, le Poster, ET LE PROJET. Je pense que mes deux jours à l'armée m'ont fait perdre un peu la notion du temps car j'avais l'impression que l'evaluation intermédiaire 1 était il y a genre moins d'une semaine.
Donc aujourd'hui je ne vais pas trop avancer sur le code et vraiment me focus sur la documentation de la récupèration d'images. Je pense que je vais aussi ajouter la partie calibration à la documentation. Je pense que c'est important que je prenne le temps maintenant car sinon le prof aura l'impression que ca n'a pas trop avancé depuis la dernière fois.
Et puis je pense que la partie calibration et récupèration d'images ne va pas trop changer et la partie calibration encore moins.
La partie anglaise je fais la revoir un peu mais je l'avais déja faite pendant les premiers jours alors ca devrait aller.
Pour le rendu il nous était demandé de fournir un fichier PDF avec tout dedans avec une table des matières notre code source etc...
Pour ce faire j'ai du changer le mkdocs.yml et installer des packages.
Voici les changements ::
```yml
site_name: Documentation Track Trends
site_author: Rohmer Maxime
copyright: ©CFPTI Tech2
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.highlight
plugins:
- glightbox
- search
- img2fig
- with-pdf:
cover_subtitle: Vroum Vroum
enabled_if_env: ENABLE_PDF_EXPORT
- annexes-integration:
annexes: # Required (at least 1)
- ConfigurationTool.cs: Code/ConfigurationTool.cs # An path to an annex with its title
- DriverGapToLeaderWindow.cs: Code/DriverGapToLeaderWindow.cs # An path to an annex with its title
- DriverPositionWindow.cs: Code/DriverPositionWindow.cs # An path to an annex with its title
- F1TVEmulator.cs: Code/F1TVEmulator.cs # An path to an annex with its title
- Program.cs: Code/Program.cs # An path to an annex with its title
- Window.cs: Code/Window.cs # An path to an annex with its title
- DriverData.cs: Code/DriverData.cs # An path to an annex with its title
- DriverLapTimeWindow.cs: Code/DriverLapTimeWindow.cs # An path to an annex with its title
- DriverSectorWindow.cs: Code/DriverSectorWindow.cs # An path to an annex with its title
- Form1.cs: Code/Form1.cs # An path to an annex with its title
- Reader.cs: Code/Reader.cs # An path to an annex with its title
- Zone.cs: Code/Zone.cs # An path to an annex with its title
- DriverDrsWindow.cs: Code/DriverDrsWindow.cs # An path to an annex with its title
- DriverNameWindow.cs: Code/DriverNameWindow.cs # An path to an annex with its title
- DriverTyresWindow.cs: Code/DriverTyresWindow.cs # An path to an annex with its title
- OcrImage.cs: Code/OcrImage.cs # An path to an annex with its title
- Settings.cs: Code/Settings.cs # An path to an annex with its title
- recoverCookiesCSV.py: Code/recoverCookiesCSV.py # An path to an annex with its title
```