Compare commits
11 commits
bc6be314e5
...
3db2370ee7
Author | SHA1 | Date | |
---|---|---|---|
3db2370ee7 | |||
3fd6632077 | |||
486b59e967 | |||
e38f7e811c | |||
6802ef7b81 | |||
c0a2b9f715 | |||
7ea1e55b4c | |||
3e9878d83a | |||
7d1f12c48a | |||
c005cc8aff | |||
1ff57ee381 |
3 changed files with 69 additions and 19 deletions
|
@ -3,11 +3,13 @@
|
|||
main() {
|
||||
local file="$(readlink --canonicalize-existing "${0}")"
|
||||
local root="$(dirname "${file}")"
|
||||
local input="${root}/main.md"
|
||||
local output="${root}/main.pdf"
|
||||
local name="main"
|
||||
local input="${root}/${name}.md"
|
||||
local output="${root}/${name}.pdf"
|
||||
local style="tango"
|
||||
pandoc \
|
||||
"${input}" \
|
||||
--highlight-style "tango" \
|
||||
--highlight-style "${style}" \
|
||||
--output "${output}" \
|
||||
--pdf-engine "xelatex" \
|
||||
\
|
||||
|
|
BIN
dossier de projet/images/wcs.png
Normal file
BIN
dossier de projet/images/wcs.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
|
@ -1,23 +1,71 @@
|
|||
---
|
||||
author: Julia Spriggs
|
||||
date: 15 Octobre 2024
|
||||
institution: Wild Code School
|
||||
subtitle: Oros
|
||||
title: Dossier de projet
|
||||
|
||||
geometry:
|
||||
- top=2cm
|
||||
- bottom=2cm
|
||||
- left=2cm
|
||||
- right=2cm
|
||||
header-includes:
|
||||
- \usepackage{geometry}
|
||||
- \geometry{a4paper,portrait,top=20mm,bottom=20mm,left=20mm,right=20mm}
|
||||
- \usepackage{relsize}
|
||||
lang: fr
|
||||
numbersections: true
|
||||
secnumdepth: 2
|
||||
toc: true
|
||||
toc-depth: 2
|
||||
---
|
||||
|
||||
\newpage
|
||||
<!-- define commands -->
|
||||
\newcommand{\hrq}{
|
||||
\rule{.25\textwidth}{1pt}
|
||||
}
|
||||
|
||||
<!-- define variables -->
|
||||
\def\authorshort{SPRIGGS}
|
||||
\def\authorlong{Julia \authorshort}
|
||||
\def\dateshort{2024}
|
||||
\def\datelong{Lundi 04 Novembre \dateshort}
|
||||
\def\titleshort{Oros}
|
||||
\def\titlelong{\titleshort : location de matériel de montagne}
|
||||
|
||||
<!-- set counters -->
|
||||
\setcounter{secnumdepth}{3}
|
||||
\setcounter{tocdepth}{3}
|
||||
|
||||
<!-- set fonts -->
|
||||
\setmainfont{DejaVu Sans}
|
||||
\setmonofont{DejaVu Sans Mono}
|
||||
|
||||
<!-- front page -->
|
||||
|
||||
\begin{center}
|
||||
\includegraphics[height=1in]{images/wcs}
|
||||
{\bfseries
|
||||
\begin{large}
|
||||
|
||||
{\larger[2] W}ILD {\larger[2] C}ODE {\larger[2] S}CHOOL
|
||||
\hrq
|
||||
Bordeaux
|
||||
|
||||
\vfill
|
||||
|
||||
\titlelong
|
||||
\hrq
|
||||
\authorlong
|
||||
|
||||
\vfill
|
||||
|
||||
Dossier de projet\\
|
||||
présenté en vue d’obtenir le titre :
|
||||
|
||||
« Concepteur développeur d’applications web »
|
||||
\hrq
|
||||
Soutenu le :
|
||||
|
||||
\datelong
|
||||
|
||||
\end{large}
|
||||
}
|
||||
\end{center}
|
||||
\pagebreak
|
||||
|
||||
<!-- table of contents -->
|
||||
|
||||
\tableofcontents
|
||||
\pagebreak
|
||||
|
||||
<!-- body -->
|
||||
|
||||
# Liste des Compétences du référentiel
|
||||
|
||||
|
|
Loading…
Reference in a new issue