Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • anas.sibarni.etu/sae-2.03
1 result
Select Git revision
  • main
1 result
Show changes
Commits on Source (2)
---
header-includes:
- \usepackage{enumitem}
- \renewlist{itemize}{itemize}{20}
- \setlist[itemize]{label=$\cdot$}
---
# SAÉ 2.03: Semaine 06 - GRP A7 # SAÉ 2.03: Semaine 06 - GRP A7
## Table des matières ## Table des matières
......
...@@ -28,10 +28,10 @@ sudo apt install pandoc-citeproc #support LATEX pour les PDF ...@@ -28,10 +28,10 @@ sudo apt install pandoc-citeproc #support LATEX pour les PDF
### Convertir le `rapport.md` en fichier `PDF` ### Convertir le `rapport.md` en fichier `PDF`
```sh ```sh
#Erreur trop de sous tableau|parti, pas supporter par Latex. A voir alternative. # Quelques [Warning] mais fonctionne.
#pandoc <entre>.md -o <sortie>.pdf #pandoc <entre>.md -o <sortie>.pdf
pandoc rapport.md -o rapport.pdf pandoc rapport.md -o rapport.pdf --pdf-engine=xelatex
``` ```
--- ---
...@@ -59,7 +59,7 @@ pandoc rapport.md -f markdown -o rapport.html --template=easy_template.html --to ...@@ -59,7 +59,7 @@ pandoc rapport.md -f markdown -o rapport.html --template=easy_template.html --to
```sh ```sh
sudo apt install pandoc sudo apt install pandoc
sudo apt install pandoc-citeproc sudo apt install pandoc-citeproc
pandoc rapport.md -o rapport.pdf pandoc rapport.md -o rapport.pdf --pdf-engine=xelatex
curl 'https://raw.githubusercontent.com/ryangrose/easy-pandoc-templates/master/copy_templates.sh' | bash curl 'https://raw.githubusercontent.com/ryangrose/easy-pandoc-templates/master/copy_templates.sh' | bash
pandoc rapport.md -f markdown -o rapport.html --template=easy_template.html --toc --metadata title="SAÉ 2.03: Semaine 06 - GRP A7" pandoc rapport.md -f markdown -o rapport.html --template=easy_template.html --toc --metadata title="SAÉ 2.03: Semaine 06 - GRP A7"
``` ```