diff options
Diffstat (limited to 'data/templates/location.php')
-rw-r--r-- | data/templates/location.php | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/data/templates/location.php b/data/templates/location.php new file mode 100644 index 0000000..dbffd0e --- /dev/null +++ b/data/templates/location.php | |||
@@ -0,0 +1,86 @@ | |||
1 | <?php | ||
2 | // latex_templates/location.php | ||
3 | |||
4 | ob_start(); | ||
5 | ?> | ||
6 | \documentclass{report} | ||
7 | |||
8 | \usepackage[french]{babel} | ||
9 | \usepackage{lmodern} % police latin modern | ||
10 | \usepackage[utf8]{inputenc} % encodage d'entrée (document) | ||
11 | \usepackage[T1]{fontenc} % encodage de sortie (rendu) | ||
12 | \usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry} % marges | ||
13 | \usepackage{graphicx} % insertions d'images | ||
14 | \usepackage{textcomp} % pour N° | ||
15 | \usepackage{xcolor} % texte en couleur | ||
16 | %\usepackage{wrapfig} % placer texte et image côte-à-côte | ||
17 | \usepackage{tabularx} % dimensions des tableaux automatique | ||
18 | |||
19 | \begin{document} | ||
20 | \setlength{\parindent}{0cm} % supprimer les alinéas | ||
21 | \large{} | ||
22 | \pagestyle{empty} % en-tête et pied de page vides | ||
23 | \definecolor{vert}{rgb}{0.07, 0.46, 0.13} % saisie en vert | ||
24 | |||
25 | \begin{center} | ||
26 | \includegraphics{../ordipolo.png}\\ | ||
27 | \Large\textbf{Dépannage informatique - Assistance à domicile} | ||
28 | \end{center} | ||
29 | |||
30 | 2 A rue de l'île de Man, 29000 Quimper | ||
31 | |||
32 | SIRET : 814 320 610 00011 | ||
33 | |||
34 | \begin{tabularx}{0.67\linewidth}{@{}X@{}@{}X@{}} | ||
35 | Tel : 06.63.85.48.82 & Courriel : ordipolo@gmx.fr | ||
36 | \end{tabularx} | ||
37 | |||
38 | Plus d'infos sur le site web: https\string://ordipolo.fr\\ | ||
39 | % \string supprime l'espace devant les : | ||
40 | |||
41 | \begin{center} | ||
42 | \large\textbf{CONTRAT DE LOCATION} | ||
43 | \end{center} | ||
44 | |||
45 | PROPRIÉTAIRE\\ | ||
46 | |||
47 | Mme, M : \textcolor{vert}{Paul Jusot}\\ | ||
48 | Adresse : \textcolor{vert}{2A, rue de l'île de Man, 29000 Quimper}\\ | ||
49 | |||
50 | LOCATAIRE\\ | ||
51 | |||
52 | \begin{tabularx}{\linewidth}{@{}X@{}@{}X@{}} | ||
53 | Mme, M : \textcolor{vert}{} & tel : \textcolor{vert}{}\\ | ||
54 | Adresse : \textcolor{vert}{} & courriel : \textcolor{vert}{} | ||
55 | \end{tabularx}\\\\ | ||
56 | |||
57 | BIEN LOUÉ\\ | ||
58 | |||
59 | Désignation : \textcolor{vert}{}\\ | ||
60 | Modèle, description : \textcolor{vert}{}\\ | ||
61 | |||
62 | État des lieux initial : \textcolor{vert}{}\\\\ | ||
63 | |||
64 | État des lieux final : \textcolor{vert}{}\\\\ | ||
65 | |||
66 | CLAUSES\\ | ||
67 | |||
68 | Durée du prêt : \textcolor{vert}{}\\ | ||
69 | Loyer mensuel : \textcolor{vert}{}\\ | ||
70 | |||
71 | |||
72 | \textbf{Le bénéficiaire de cette location s’engage à prendre soin du bien désigné et à en faire un usage strictement personnel.}\\ | ||
73 | |||
74 | \begin{tabularx}{\linewidth}{@{}X@{}@{}X@{}} | ||
75 | Fait en deux exemplaires à : \textcolor{vert}{} & le : \textcolor{vert}{} \\ | ||
76 | \end{tabularx}\\ | ||
77 | |||
78 | \begin{tabularx}{\linewidth}{@{}X@{}@{}X@{}} | ||
79 | Le bénéficiaire du prêt : \textcolor{vert}{} & | ||
80 | Le loueur : \textcolor{vert}{}\\ | ||
81 | \end{tabularx}\\ | ||
82 | \normalsize(précéder la signature de la mention « lu et approuvé ») | ||
83 | |||
84 | \end{document} | ||
85 | <?php | ||
86 | $latex = ob_get_clean(); | ||