Reçus fiscaux et cotisation
|
@ -32,39 +32,6 @@
|
|||
Vous souhaitant encore une fois la bienvenue,
|
||||
Librement,
|
||||
|
||||
# Reçu de cotisation
|
||||
|
||||
## Pièce jointe du reçu
|
||||
|
||||
Libre en Communs
|
||||
Association à but non lucratif, loi 1091
|
||||
N° RNA: W941017425
|
||||
13 RUE SULLY
|
||||
94210 SAINT-MAUR-DES-FOSSES
|
||||
|
||||
<NOM>
|
||||
<ADRESSE>
|
||||
|
||||
Objet: Reçu de cotisation.
|
||||
|
||||
Madame, Monsieur,
|
||||
|
||||
L'association Libre en Communs accuse réception de votre règlement d'un montant
|
||||
de <MONTANT> par le <MOYEN DE PAIEMENT> n° <NUM> en date du <DATE>, et vous
|
||||
reconnaît à jour de cotisation à raison de votre adhésion à notre association
|
||||
pour l'année civile <ANNEE>.
|
||||
|
||||
Nous vous rappelons que la cotisation n’est pas soumise à la TVA et qu’elle ne
|
||||
donne pas lieu à la délivrance d’une facture. Elle n’ouvre pas droit au bénéfice
|
||||
des dispositions des articles 200, 238 bis et 885-0 V bis A du code général des
|
||||
impôts.
|
||||
|
||||
|
||||
Vous remerciant de votre engagement,
|
||||
|
||||
Adrien Bourmault,
|
||||
Trésorier de Libre en Communs
|
||||
|
||||
## Courriel du reçu de cotisation
|
||||
|
||||
[Trésorerie] Reçu pour votre cotisation de membre
|
||||
|
|
Before Width: | Height: | Size: 723 KiB |
|
@ -1,43 +0,0 @@
|
|||
<footer id="a-lec_footer">
|
||||
<div id="a-lec_infos">
|
||||
<h1>À propos de Libre en Communs</h1>
|
||||
<div id="a-lec_a-propos">
|
||||
<p class="a-lec_paragraph">
|
||||
<b>Libre en Communs</b> est une
|
||||
<a title="Plus d'informations sur la page Wikipédia France"
|
||||
href="https://fr.wikipedia.org/wiki/Association_loi_de_1901">
|
||||
association loi 1901</a>, à but non lucratif avec pour champ
|
||||
d'action le logiciel libre, tel que défini par la
|
||||
<a href="https://www.fsf.org/">Free Software Foundation</a>
|
||||
(Fondation pour le Logiciel Libre) et le projet
|
||||
<a href="https://www.gnu.org/philosophy/free-sw.fr.html">
|
||||
<abbr title="GNU's Not Unix">GNU</abbr></a>.
|
||||
Pour adhérer, voir sur la
|
||||
<a title="Page d'accueil du site Libre en Communs"
|
||||
href="https://www.a-lec.org/">page d'accueil</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="a-lec_copyright">
|
||||
<ul>
|
||||
<li class="a-lec_list-cr">
|
||||
<a href="https://git.a-lec.org/a-lec/vie-associative/statuts/-/blob/master/Statuts.pdf"
|
||||
target="_blank"
|
||||
title="Fichier PDF des Statuts de l'association Libre en Communs">Statuts de l'association</a>
|
||||
</li>
|
||||
<li class="a-lec_list-cr">
|
||||
<a href="https://git.a-lec.org/a-lec/vie-associative/reglement-interieur/-/blob/master/RI.pdf"
|
||||
target="_blank"
|
||||
title="Fichier PDF du Règlement Intérieur de l'association Libre en Communs">Règlement intérieur</a>
|
||||
</li>
|
||||
<li class="a-lec_list-cr">Copyright © 2021-2022 Libre en Communs</li>
|
||||
<li class="a-lec_list-cr"
|
||||
title="Creative Commons: Attribution-ShareAlike 4.0 International">Licence CC-BY-SA 4.0 sauf mention contraire</li>
|
||||
<li class="a-lec_list-cr">Propulsé par GSL
|
||||
(<a title="Code source du site a-lec.org"
|
||||
href="https://git.a-lec.org/a-lec/commissions/infrastructure//site-web-www.a-lec.org"
|
||||
target="_blank">voir le code</a>)
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
|
@ -1,73 +0,0 @@
|
|||
/*
|
||||
========================================================================
|
||||
Description : CSS stylesheet
|
||||
Author : neox
|
||||
Website : https://a-lec.org
|
||||
License : AGPL
|
||||
========================================================================
|
||||
*/
|
||||
|
||||
form {
|
||||
margin-top: 20px;
|
||||
background: #fff9e4;
|
||||
display: table;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
box-shadow: 3px 3px 5px grey;
|
||||
}
|
||||
|
||||
form *{
|
||||
padding: 5px;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
form p {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
form label {
|
||||
display: table-cell;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
form .renseignements {
|
||||
display: table-cell;
|
||||
border-bottom: 2px solid var(--a-lec_blue);
|
||||
border-radius: 3px;
|
||||
background-color: lightcyan;
|
||||
padding: 5px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
form .renseignements:focus {
|
||||
border-bottom: 2px solid var(--a-lec_red);
|
||||
border-radius: 3px;
|
||||
background-color: lightsalmon;
|
||||
}
|
||||
|
||||
form select {
|
||||
border-bottom: 2px solid var(--a-lec_blue);
|
||||
border-radius: 3px;
|
||||
background-color: lightcyan;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
form .validation {
|
||||
background-color: var(--a-lec_blue);
|
||||
box-shadow: 3px 3px 5px grey;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
margin-bottom: -10px;
|
||||
}
|
||||
|
||||
form .validation:focus {
|
||||
display: table-cell;
|
||||
background-color: var(--a-lec_red);
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
}
|
|
@ -1,141 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name='viewport' content="width=device-width, initial-scale=1.0"/>
|
||||
<meta name='robots' content="all"/>
|
||||
<meta name='medium' content='website'/>
|
||||
<meta name='revisit-after' content="3 days"/>
|
||||
|
||||
<title>Faire un don - Libre en Communs</title>
|
||||
<link rel="stylesheet" media="screen" href="styles.css" />
|
||||
<link rel="stylesheet" media="screen" href="form.css" />
|
||||
<link rel="shortcut icon" type="image/png" href="favicon.png" />
|
||||
<link rel='me' type='text/html' href="https://toot.a-lec.org/@a_lec"/>
|
||||
|
||||
<meta name='language' content="fr"/>
|
||||
<meta name='reply-to' content="cominfra+www@a-lec.org"/>
|
||||
<meta name='copyright' content="2022 Libre en Communs CC-BY-SA 4.0 sauf mention contraire"/>
|
||||
<meta name='title' content="Accueil - Libre en Communs"/>
|
||||
<meta name='author' content="neox"/>
|
||||
<meta name='description' content="Faire un don au profit de Libre en Communs"/>
|
||||
<meta name='keywords' content="don,libre,free,communs,Logiciels Libres,Connaissance,Partage,Éducation,Solidarité"/>
|
||||
<meta name='search_date' content="2021-07-01"/>
|
||||
</head>
|
||||
|
||||
<body id="a-lec_page">
|
||||
|
||||
<header id="a-lec_banner">
|
||||
<div id="a-lec_site-logo">
|
||||
<a href="/">
|
||||
<img src="logo_a-lec.svg"
|
||||
alt="Logo de Libre en Communs"
|
||||
title="Logo de Libre en Communs"/>
|
||||
</a>
|
||||
</div>
|
||||
<section id="a-lec_site-titles">
|
||||
<h1 id="a-lec_site-name">
|
||||
<a href="/"
|
||||
title="Page d'accueil de Libre en Communs">
|
||||
Libre en Communs
|
||||
</a>
|
||||
</h1>
|
||||
<h2 id="a-lec_site-description">“Connaissance, partage, éducation et solidarité„</h2>
|
||||
</section>
|
||||
</header>
|
||||
|
||||
<section id="a-lec_page-wrapper">
|
||||
<article id="a-lec_index">
|
||||
|
||||
<form action="/my-handling-form-page" method="post">
|
||||
<p>
|
||||
<label for="nom">Nom</label>
|
||||
<input class="renseignements" type="text" id="nom" name="nom"/>
|
||||
</p>
|
||||
<p>
|
||||
<label for="prenom">Prénom(s)</label>
|
||||
<input class="renseignements" type="text" id="prenom" name="prenom"/>
|
||||
</p>
|
||||
<p>
|
||||
<label for="adresse">Adresse postale</label>
|
||||
<input class="renseignements" type="text" id="adresse" name="adresse"/>
|
||||
</p>
|
||||
<p>
|
||||
<label for="mail">Courriel</label>
|
||||
<input class="renseignements" type="email" id="mail" name="mail"/>
|
||||
</p>
|
||||
<p>
|
||||
<label for="mailconfirm">Courriel (confirmation)</label>
|
||||
<input class="renseignements" type="email" id="mailconfirm" name="mailconfirm"/>
|
||||
</p>
|
||||
<p>
|
||||
<label for="somme">Somme versée (EUR)</label>
|
||||
<input class="renseignements" type="number" min="1" step="any" name="somme"/>
|
||||
</p>
|
||||
<p>
|
||||
<label><br/></label>
|
||||
<input class="validation" type="submit" value="Valider le don">
|
||||
</p>
|
||||
</form>
|
||||
|
||||
</article>
|
||||
|
||||
<aside id="a-lec_sidebar">
|
||||
<div class="a-lec_wrapper" role="navigation">
|
||||
<nav id="a-lec_latest-posts">
|
||||
<h1 class="a-lec_latest-posts"></h1>
|
||||
<ul aria-label="Liste d'Articles">
|
||||
<!--# include file="./last-posts-list.html" -->
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</aside>
|
||||
</section>
|
||||
|
||||
<footer id="a-lec_footer">
|
||||
<div id="a-lec_infos">
|
||||
<h1>À propos de Libre en Communs</h1>
|
||||
<div id="a-lec_a-propos">
|
||||
<p class="a-lec_paragraph">
|
||||
<b>Libre en Communs</b> est une
|
||||
<a title="Plus d'informations sur la page Wikipédia France"
|
||||
href="https://fr.wikipedia.org/wiki/Association_loi_de_1901">
|
||||
association loi 1901</a>, à but non lucratif avec pour champ
|
||||
d'action le logiciel libre, tel que défini par la
|
||||
<a href="https://www.fsf.org/">Free Software Foundation</a>
|
||||
(Fondation pour le Logiciel Libre) et le projet
|
||||
<a href="https://www.gnu.org/philosophy/free-sw.fr.html">
|
||||
<abbr title="GNU's Not Unix">GNU</abbr></a>.
|
||||
Pour adhérer, voir sur la
|
||||
<a title="Page d'accueil du site Libre en Communs"
|
||||
href="https://www.a-lec.org/">page d'accueil</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="a-lec_copyright">
|
||||
<ul>
|
||||
<li class="a-lec_list-cr">
|
||||
<a href="https://git.a-lec.org/a-lec/vie-associative/statuts/-/blob/master/Statuts.pdf"
|
||||
target="_blank"
|
||||
title="Fichier PDF des Statuts de l'association Libre en Communs">Statuts de l'association</a>
|
||||
</li>
|
||||
<li class="a-lec_list-cr">
|
||||
<a href="https://git.a-lec.org/a-lec/vie-associative/reglement-interieur/-/blob/master/RI.pdf"
|
||||
target="_blank"
|
||||
title="Fichier PDF du Règlement Intérieur de l'association Libre en Communs">Règlement intérieur</a>
|
||||
</li>
|
||||
<li class="a-lec_list-cr">Copyright © 2021-2022 Libre en Communs</li>
|
||||
<li class="a-lec_list-cr"
|
||||
title="Creative Commons: Attribution-ShareAlike 4.0 International">Licence CC-BY-SA 4.0 sauf mention contraire</li>
|
||||
<li class="a-lec_list-cr">Propulsé par GSL
|
||||
(<a title="Code source du site a-lec.org"
|
||||
href="https://git.a-lec.org/a-lec/commissions/infrastructure//site-web-www.a-lec.org"
|
||||
target="_blank">voir le code</a>)
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
<header id="a-lec_banner">
|
||||
<div id="a-lec_site-logo">
|
||||
<a href="/">
|
||||
<img src="./templates/logo_a-lec.svg"
|
||||
alt="Logo de Libre en Communs"
|
||||
title="Logo de Libre en Communs"/>
|
||||
</a>
|
||||
</div>
|
||||
<section id="a-lec_site-titles">
|
||||
<h1 id="a-lec_site-name">
|
||||
<a href="/"
|
||||
title="Page d'accueil de Libre en Communs">
|
||||
Libre en Communs
|
||||
</a>
|
||||
</h1>
|
||||
<h2 id="a-lec_site-description">“Connaissance, partage, éducation et solidarité„</h2>
|
||||
</section>
|
||||
</header>
|
Before Width: | Height: | Size: 175 KiB |
|
@ -1,701 +0,0 @@
|
|||
|
||||
/*
|
||||
========================================================================
|
||||
Description : CSS stylesheet
|
||||
Author : echolib & neox
|
||||
Website : https://a-lec.org
|
||||
License : AGPL
|
||||
========================================================================
|
||||
*/
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
ROOT VARIABLES DOCUMENT
|
||||
========================================================================
|
||||
*/
|
||||
:root {
|
||||
--a-lec_blue: #00bdff;
|
||||
--a-lec_red: #b11107;
|
||||
--a-lec_yellow: #ecb41a;
|
||||
--a-lec_black: #2d3842;
|
||||
--a-lec_white: #fefff9;
|
||||
}
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
Reset all:
|
||||
- Inherited properties to inherit value
|
||||
- Non-inherited properties to initial value
|
||||
========================================================================
|
||||
*/
|
||||
* {
|
||||
all: unset;
|
||||
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
||||
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
||||
box-sizing: border-box; /* Opera/IE 8+ */
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
Foundations
|
||||
========================================================================
|
||||
*/
|
||||
title {
|
||||
display: none;
|
||||
}
|
||||
|
||||
head {
|
||||
display: none;
|
||||
}
|
||||
|
||||
style {
|
||||
display:none;
|
||||
}
|
||||
|
||||
body {
|
||||
color: var(--a-lec_black);
|
||||
background: var(--a-lec_white);
|
||||
font-family: sans-serif;
|
||||
font-size: 100%;
|
||||
text-align: justify;
|
||||
text-justify: auto;
|
||||
background: var(--a-lec_white);
|
||||
}
|
||||
|
||||
section#a-lec_page-wrapper {
|
||||
display: flex;
|
||||
margin: 0 25px;
|
||||
}
|
||||
|
||||
article,
|
||||
aside {
|
||||
margin: 7px;
|
||||
background-color: var(--a-lec_white);
|
||||
background-repeat: repeat;
|
||||
padding: 10px;
|
||||
min-height: 62vh;
|
||||
}
|
||||
|
||||
article {
|
||||
flex-basis: 70%;
|
||||
}
|
||||
|
||||
aside {
|
||||
margin: 10px;
|
||||
flex-basis: 30%;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
HEADER / BANNER
|
||||
========================================================================
|
||||
*/
|
||||
|
||||
header {
|
||||
background: #2d4b63; /* old IE fallback */
|
||||
|
||||
background-attachment: fixed;
|
||||
background-image: url(electronic.png);
|
||||
background-position: 0 0;
|
||||
background-repeat: cover;
|
||||
background-size: auto;
|
||||
}
|
||||
|
||||
#a-lec_banner,
|
||||
#a-lec_footer {
|
||||
display: flex;
|
||||
height: auto;
|
||||
width: auto;
|
||||
padding: 20px 25px;
|
||||
}
|
||||
|
||||
#a-lec_site-logo img {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: start;
|
||||
width: 160px;
|
||||
height: 160px;
|
||||
place-content: baseline center;
|
||||
}
|
||||
|
||||
#a-lec_site-logo a {
|
||||
background-color: unset;
|
||||
place-content: baseline center;
|
||||
}
|
||||
|
||||
#a-lec_site-titles {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
place-content: baseline center;
|
||||
}
|
||||
|
||||
#a-lec_site-titles h2 {
|
||||
font-weight: normal;
|
||||
color: #FFF;
|
||||
font-size: 130%;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#a-lec_site-name a {
|
||||
color: #FFF;
|
||||
font-weight: bold;
|
||||
font-size: 300%;
|
||||
padding-left: 50px;
|
||||
}
|
||||
|
||||
#a-lec_site-name a:hover {
|
||||
background-color: unset;
|
||||
font-weight: bold;
|
||||
font-size: 300%;
|
||||
background-color: unset;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
FOOTER
|
||||
========================================================================
|
||||
*/
|
||||
|
||||
footer {
|
||||
background: #2d4b63; /* old IE fallback */
|
||||
|
||||
background-attachment: fixed;
|
||||
background-image: url(electronic.png);
|
||||
background-position: 0 0;
|
||||
background-repeat: cover;
|
||||
background-size: auto;
|
||||
}
|
||||
|
||||
#a-lec_footer h1 {
|
||||
font-size: 130%;
|
||||
color: #FFF;
|
||||
font-weight: bold;
|
||||
margin-top: 0px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
#a-lec_footer {
|
||||
color: #FFF;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#a-lec_footer a {
|
||||
color: var(--a-lec_yellow);
|
||||
}
|
||||
|
||||
#a-lec_footer a:hover {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#a-lec_footer b {
|
||||
color: var(--a-lec_blue);
|
||||
}
|
||||
|
||||
div#a-lec_copyright {
|
||||
font-size: 90%;
|
||||
flex-basis: 30%;
|
||||
margin-left: -100px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div#a-lec_infos {
|
||||
flex-basis: 70%;
|
||||
font-size: 100%;
|
||||
margin: 0px 110px 0px 0px;
|
||||
}
|
||||
.a-lec_list-cr {
|
||||
display: block;
|
||||
margin: 0 0 5px 25px;
|
||||
}
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
SIDEBAR
|
||||
========================================================================
|
||||
*/
|
||||
|
||||
aside#a-lec_sidebar {
|
||||
padding-left: 40px;
|
||||
}
|
||||
|
||||
.a-lec_latest-posts {
|
||||
color: var(--a-lec_yellow);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.a-lec_list-post-title {
|
||||
display: block;
|
||||
padding: 15px;
|
||||
background-color: var(--a-lec_yellow);
|
||||
color: var(--a-lec_white);
|
||||
font-weight: bold;
|
||||
padding: 10px;
|
||||
margin: 10px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.a-lec_list-post-metas {
|
||||
display: block;
|
||||
padding: 15px;
|
||||
background-color: #FDF1B8;
|
||||
color: var(--a-lec_red);;
|
||||
font-size: 80%;
|
||||
padding: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.a-lec_list-post-info {
|
||||
display: block;
|
||||
background-color: #FDF1B8;
|
||||
font-size: 80%;
|
||||
padding: 10px;
|
||||
padding-top: unset;
|
||||
display: block;
|
||||
color: var(--chalec_black);
|
||||
font-weight: normal;
|
||||
display: block;
|
||||
font-size: 80%;
|
||||
padding: 10px;
|
||||
padding-top: unset;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.a-lec_list-post-link {
|
||||
color: var(--a-lec_white);
|
||||
}
|
||||
|
||||
.a-lec_list-post-link:hover {
|
||||
color: var(--a-lec_white);
|
||||
}
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
ARTICLE
|
||||
========================================================================
|
||||
*/
|
||||
|
||||
/*
|
||||
* Sticky Author Date
|
||||
*/
|
||||
#a-lec_metas {
|
||||
display: block;
|
||||
background-color: var(--a-lec_yellow);
|
||||
position: relative;
|
||||
text-align: left;
|
||||
float: right;
|
||||
top: -10px;
|
||||
padding: 5px;
|
||||
font-size: 82%;
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Basic texts
|
||||
*/
|
||||
strong {
|
||||
color: #454545;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
b {
|
||||
color: #676767;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
i {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
abbr {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/*
|
||||
* Lists
|
||||
*/
|
||||
.a-lec_post-content li {
|
||||
padding: 3px 0;
|
||||
}
|
||||
|
||||
.a-lec_list-1 {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.a-lec_list-2 {
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.a-lec_list-3 {
|
||||
display: block;
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
.a-lec_list-ol li {
|
||||
counter-increment: step-counter;
|
||||
}
|
||||
|
||||
.a-lec_list-ol .a-lec_list-1::before,
|
||||
.a-lec_list-ol .a-lec_list-2::before,
|
||||
.a-lec_list-ol .a-lec_list-3::before {
|
||||
display: inline-block;
|
||||
content: counter(step-counter) ".";
|
||||
padding-left: 0px;
|
||||
margin-right: 5px;
|
||||
list-style-type: upper-roman;
|
||||
}
|
||||
|
||||
.a-lec_list-ol .a-lec_list-1::before {
|
||||
color: var(--a-lec_red);
|
||||
}
|
||||
|
||||
.a-lec_list-ol .a-lec_list-2::before {
|
||||
color: var(--a-lec_blue);
|
||||
}
|
||||
|
||||
.a-lec_list-ol .a-lec_list-3::before {
|
||||
color: var(--a-lec_yellow);
|
||||
}
|
||||
|
||||
.a-lec_list-ul .a-lec_list-1::before,
|
||||
.a-lec_list-ul .a-lec_list-2::before,
|
||||
.a-lec_list-ul .a-lec_list-3::before {
|
||||
display: inline-block;
|
||||
content: "\2022";
|
||||
width: 10px;
|
||||
padding-left: 5px;
|
||||
margin-right: 5px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.a-lec_list-ul .a-lec_list-1::before {
|
||||
color: var(--a-lec_red);
|
||||
}
|
||||
|
||||
.a-lec_list-ul .a-lec_list-2::before {
|
||||
color: var(--a-lec_blue);
|
||||
}
|
||||
|
||||
.a-lec_list-ul .a-lec_list-3::before {
|
||||
color: var(--a-lec_yellow);
|
||||
}
|
||||
|
||||
/*
|
||||
* Blockquotes
|
||||
*/
|
||||
.a-lec_fgc-quote,
|
||||
.a-lec_quote,
|
||||
.a-lec_simple-quote {
|
||||
}
|
||||
|
||||
.a-lec_quote,
|
||||
.a-lec_simple-quote {
|
||||
|
||||
display: block;
|
||||
font-style: italic;
|
||||
margin: 25px 0px 0px 0px;
|
||||
color: var(--a-lec_black);
|
||||
}
|
||||
|
||||
.a-lec_paragraph-2 {
|
||||
display: block;
|
||||
margin: 30px;
|
||||
}
|
||||
|
||||
.a-lec_quote p::before,
|
||||
.a-lec_simple-quote p::before {
|
||||
color: var(--a-lec_blue);
|
||||
content: "“";
|
||||
font-size: 3rem;
|
||||
margin-left: -30px;
|
||||
margin-bottom: -30px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.a-lec_quote p::after,
|
||||
.a-lec_simple-quote p::after {
|
||||
color: var(--a-lec_blue);
|
||||
content: "„";
|
||||
font-size: 3rem;
|
||||
margin-right: -30px;
|
||||
margin-top: -35px;
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.a-lec_fgc-quote {
|
||||
display: block;
|
||||
margin: -20px 0px 20px 0px;
|
||||
text-align: right;
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
.a-lec_simple-quote {
|
||||
padding-bottom: 3px;
|
||||
}
|
||||
|
||||
.a-lec_fgc-quote a {
|
||||
background-color: var(--a-lec_yellow);
|
||||
padding: 4px;
|
||||
color: var(--a-lec_black);
|
||||
}
|
||||
|
||||
.a-lec_fgc-quote a:hover {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Block-Codes
|
||||
*/
|
||||
.a-lec_block-code {
|
||||
display: block;
|
||||
padding: 15px;
|
||||
margin: 10px 30px 15px 10px;
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
font-size: 88%;
|
||||
padding: 10px;
|
||||
margin: 30px 30px 30px 10px;
|
||||
border: 3px solid var(--a-lec_blue);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Inline-Codes
|
||||
*/
|
||||
.a-lec_inline-code {
|
||||
display: inline-block;
|
||||
background-color: #000;
|
||||
padding: 0 5px;
|
||||
font-size: 89%;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Links
|
||||
*/
|
||||
a {
|
||||
color: var(--a-lec_red);
|
||||
padding: 0 2px;
|
||||
font-weight: bold;
|
||||
-webkit-transition: all 0.25s ease-out;
|
||||
-moz-transition: all 0.25s ease-out;
|
||||
transition: all 0.25s ease-out;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
padding: 0 2px;
|
||||
background-color: var(--a-lec_blue);
|
||||
color: #000;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
a:active {
|
||||
text-decoration: underline;
|
||||
cursor: progress;
|
||||
}
|
||||
|
||||
a.a-lec_file-link {
|
||||
background-color: #FFF;
|
||||
}
|
||||
|
||||
a.a-lec_file-link:hover {
|
||||
background-color: var(--a-lec_yellow);
|
||||
color: #000;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*
|
||||
* Paragraphs
|
||||
*/
|
||||
p.a-lec_paragraph {
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.a-lec_content-p1{
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.a-lec_content-p2{
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.a-lec_content-p3{
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.a-lec_content-p4{
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.a-lec_content-p5{
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.a-lec_content-p6{
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
A-lec images
|
||||
*/
|
||||
.a-lec_image_center {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
HEADINGS
|
||||
========================================================================
|
||||
*/
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
display: inline-block;
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
h1 {
|
||||
font-size: 130%;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 125%;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 5px;
|
||||
color: #454545;
|
||||
}
|
||||
h3 {
|
||||
font-size: 120%;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 5px;
|
||||
color: #505050;
|
||||
}
|
||||
h4 {
|
||||
font-size: 115%;
|
||||
color: #606060;
|
||||
}
|
||||
h5 {
|
||||
font-size: 110%;
|
||||
color: #707070;
|
||||
}
|
||||
h6 {
|
||||
font-size: 105%;
|
||||
color: #808080;
|
||||
}
|
||||
|
||||
/*
|
||||
========================================================================
|
||||
LITTLE SCREENS
|
||||
========================================================================
|
||||
*/
|
||||
@media screen and (max-width: 700px) {
|
||||
|
||||
section#a-lec_page-wrapper {
|
||||
display: block;
|
||||
margin: 10px 25px;
|
||||
}
|
||||
|
||||
aside#a-lec_sidebar {
|
||||
background: none;
|
||||
padding-left: 40px;
|
||||
}
|
||||
|
||||
.a-lec_latest-posts {
|
||||
margin-left: -35px;
|
||||
}
|
||||
|
||||
div#a-lec_metas {
|
||||
margin: 0px -10px 0px 0px;
|
||||
}
|
||||
|
||||
article {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
article#a-lec_index {
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
#a-lec_footer {
|
||||
display: block;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#a-lec_footer .a-lec_paragraph{
|
||||
margin-bottom: 30px;
|
||||
font-size: 90%;
|
||||
border: 2px solid var(--a-lec_blue);
|
||||
border-top : unset;
|
||||
border-left: unset;
|
||||
border-right: unset;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#a-lec_footer h1 {
|
||||
margin-top: 10px;
|
||||
font-size: 115%;
|
||||
padding: 15px;
|
||||
margin-bottom: -20px;
|
||||
font-size: 120%
|
||||
}
|
||||
|
||||
#a-lec_footer li {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#a-lec_banner,
|
||||
#a-lec_footer {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#a-lec_site-logo img {
|
||||
all: unset;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 160px;
|
||||
}
|
||||
|
||||
#a-lec_site-name a {
|
||||
margin-top: -30px;
|
||||
margin-bottom: -20px;
|
||||
position: relative;
|
||||
float: left;
|
||||
font-size: 3rem;
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
#chalec_site-titles h2 {
|
||||
font-weight: normal;
|
||||
color: var(--chalec_white);
|
||||
font-size: 130%;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
|
||||
#a-lec_site-name a:hover {
|
||||
float: left;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
#a-lec_site-description {
|
||||
all: unset;
|
||||
margin-top: 15px;
|
||||
position: relative;
|
||||
float: left;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
\relax
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Dénomination}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Statut}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Adresse}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Nom ou dénomination}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Statut}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Adresse}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Somme (EUR)}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Date du versement}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Forme}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Nature}{}{}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subparagraph}{Mode de versement}{}{}\protected@file@percent }
|
||||
\gdef \@abspage@last{1}
|
|
@ -1,285 +0,0 @@
|
|||
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex 2022.4.29) 29 APR 2022 01:20
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
%&-line parsing enabled.
|
||||
**RECU_FISCAL.tex
|
||||
(./RECU_FISCAL.tex
|
||||
LaTeX2e <2021-11-15> patch level 1
|
||||
L3 programming layer <2022-01-21>
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2021/10/04 v1.4n Standard LaTeX document class
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2021/10/04 v1.4n Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count185
|
||||
\c@section=\count186
|
||||
\c@subsection=\count187
|
||||
\c@subsubsection=\count188
|
||||
\c@paragraph=\count189
|
||||
\c@subparagraph=\count190
|
||||
\c@figure=\count191
|
||||
\c@table=\count192
|
||||
\abovecaptionskip=\skip47
|
||||
\belowcaptionskip=\skip48
|
||||
\bibindent=\dimen138
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks16
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR)
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
|
||||
Package: trig 2021/08/11 v1.11 sin cos tan (DPC)
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
||||
)
|
||||
Package graphics Info: Driver file: pdftex.def on input line 107.
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
|
||||
))
|
||||
\Gin@req@height=\dimen139
|
||||
\Gin@req@width=\dimen140
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/tabto-ltx/tabto.sty
|
||||
Package: tabto 2018/12/28 v 1.4 Another tabbing mechanism
|
||||
\CurrentLineWidth=\dimen141
|
||||
\TabPrevPos=\dimen142
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime.sty
|
||||
Package: datetime 2015/03/20 v2.60 Date Time Package
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
|
||||
\etb@tempcnta=\count193
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fmtcount.sty
|
||||
Package: fmtcount 2020/01/30 v3.07
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
|
||||
Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC)
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty
|
||||
Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex
|
||||
\XKV@toks=\toks17
|
||||
\XKV@tempa@toks=\toks18
|
||||
)
|
||||
\XKV@depth=\count194
|
||||
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
|
||||
))
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcprefix.sty
|
||||
Package: fcprefix 2012/09/28
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
|
||||
Package: fcnumparser 2017/06/15
|
||||
\fc@digit@counter=\count195
|
||||
))
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks19
|
||||
\ex@=\dimen143
|
||||
)
|
||||
\c@padzeroesN=\count196
|
||||
\fc@tmpcatcode=\count197
|
||||
\@DT@modctr=\count198
|
||||
\@ordinalctr=\count199
|
||||
\@orgargctr=\count266
|
||||
\@strctr=\count267
|
||||
\@tmpstrctr=\count268
|
||||
\@DT@loopN=\count269
|
||||
\@DT@X=\count270
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/datetime/datetime-defaults.sty
|
||||
Package: datetime-defaults 2013/09/10
|
||||
)
|
||||
\@day=\count271
|
||||
\@month=\count272
|
||||
\@year=\count273
|
||||
\c@HOUR=\count274
|
||||
\c@HOURXII=\count275
|
||||
\c@MINUTE=\count276
|
||||
\c@TOHOUR=\count277
|
||||
\c@TOMINUTE=\count278
|
||||
\c@SECOND=\count279
|
||||
\currenthour=\count280
|
||||
\currentminute=\count281
|
||||
\currentsecond=\count282
|
||||
Package datetime Info: No datetime.cfg file found, using default settings on in
|
||||
put line 308.
|
||||
\@dtctr=\count283
|
||||
\dayofyear=\count284
|
||||
\dayofweek=\count285
|
||||
LaTeX Info: Redefining \today on input line 736.
|
||||
\dt@a=\toks20
|
||||
\dt@b=\toks21
|
||||
)
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2020/01/02 v5.9 Page Geometry
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
Package: iftex 2020/03/06 v1.0d TeX engine tests
|
||||
))
|
||||
\Gm@cnth=\count286
|
||||
\Gm@cntv=\count287
|
||||
\c@Gm@tempcnt=\count288
|
||||
\Gm@bindingoffset=\dimen144
|
||||
\Gm@wd@mp=\dimen145
|
||||
\Gm@odd@mp=\dimen146
|
||||
\Gm@even@mp=\dimen147
|
||||
\Gm@layoutwidth=\dimen148
|
||||
\Gm@layoutheight=\dimen149
|
||||
\Gm@layouthoffset=\dimen150
|
||||
\Gm@layoutvoffset=\dimen151
|
||||
\Gm@dimlist=\toks22
|
||||
|
||||
|
||||
Package geometry Warning: `tmargin' and `bmargin' result in NEGATIVE (-58.32816
|
||||
pt).
|
||||
`height' should be shortened in length.
|
||||
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
|
||||
File: l3backend-pdftex.def 2022-01-12 L3 backend support: PDF output (pdfTeX)
|
||||
\l__color_backend_stack_int=\count289
|
||||
\l__pdf_internal_box=\box50
|
||||
)
|
||||
No file RECU_FISCAL.aux.
|
||||
\openout1 = `RECU_FISCAL.aux'.
|
||||
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 37.
|
||||
LaTeX Font Info: ... okay on input line 37.
|
||||
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count290
|
||||
\scratchdimen=\dimen152
|
||||
\scratchbox=\box51
|
||||
\nofMPsegments=\count291
|
||||
\nofMParguments=\count292
|
||||
\everyMPshowfont=\toks23
|
||||
\MPscratchCnt=\count293
|
||||
\MPscratchDim=\dimen153
|
||||
\MPnumerator=\count294
|
||||
\makeMPintoPDFobject=\count295
|
||||
\everyMPtoPDFconversion=\toks24
|
||||
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
|
||||
85.
|
||||
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
|
||||
e
|
||||
))
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/fmtcount/fc-english.def
|
||||
File: fc-english.def 2016/01/12
|
||||
)
|
||||
*geometry* driver: auto-detecting
|
||||
*geometry* detected driver: pdftex
|
||||
*geometry* verbose mode - [ preamble ] result:
|
||||
* driver: pdftex
|
||||
* paper: a4paper
|
||||
* layout: <same size as paper>
|
||||
* layoutoffset:(h,v)=(0.0pt,0.0pt)
|
||||
* modes:
|
||||
* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt)
|
||||
* v-part:(T,H,B)=(-23.33124pt, 903.375pt, -34.99692pt)
|
||||
* \paperwidth=597.50787pt
|
||||
* \paperheight=845.04684pt
|
||||
* \textwidth=505.89pt
|
||||
* \textheight=903.375pt
|
||||
* \oddsidemargin=-26.46106pt
|
||||
* \evensidemargin=-26.46106pt
|
||||
* \topmargin=-132.60123pt
|
||||
* \headheight=12.0pt
|
||||
* \headsep=25.0pt
|
||||
* \topskip=10.0pt
|
||||
* \footskip=30.0pt
|
||||
* \marginparwidth=65.0pt
|
||||
* \marginparsep=11.0pt
|
||||
* \columnsep=10.0pt
|
||||
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
|
||||
* \hoffset=0.0pt
|
||||
* \voffset=0.0pt
|
||||
* \mag=1000
|
||||
* \@twocolumnfalse
|
||||
* \@twosidefalse
|
||||
* \@mparswitchfalse
|
||||
* \@reversemarginfalse
|
||||
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
|
||||
|
||||
<header.png, id=1, 2409.0pt x 662.475pt>
|
||||
File: header.png Graphic file (type png)
|
||||
<use header.png>
|
||||
Package pdftex.def Info: header.png used on input line 39.
|
||||
(pdftex.def) Requested size: 597.50787pt x 164.31433pt.
|
||||
LaTeX Font Info: External font `cmex10' loaded for size
|
||||
(Font) <12> on input line 39.
|
||||
LaTeX Font Info: External font `cmex10' loaded for size
|
||||
(Font) <8> on input line 39.
|
||||
LaTeX Font Info: External font `cmex10' loaded for size
|
||||
(Font) <6> on input line 39.
|
||||
|
||||
LaTeX Warning: No \author given.
|
||||
|
||||
LaTeX Font Info: External font `cmex10' loaded for size
|
||||
(Font) <7> on input line 48.
|
||||
LaTeX Font Info: External font `cmex10' loaded for size
|
||||
(Font) <5> on input line 48.
|
||||
LaTeX Font Info: Trying to load font information for TS1+cmss on input line
|
||||
83.
|
||||
(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmss.fd
|
||||
File: ts1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
|
||||
)
|
||||
<tresorier.png, id=3, 872.50969pt x 401.24907pt>
|
||||
File: tresorier.png Graphic file (type png)
|
||||
<use tresorier.png>
|
||||
Package pdftex.def Info: tresorier.png used on input line 114.
|
||||
(pdftex.def) Requested size: 93.95122pt x 43.20078pt.
|
||||
[1
|
||||
|
||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./header.png> <./tresorier
|
||||
.png>]
|
||||
(./RECU_FISCAL.aux) )
|
||||
Here is how much of TeX's memory you used:
|
||||
3294 strings out of 480104
|
||||
53028 string characters out of 5892285
|
||||
365566 words of memory out of 5000000
|
||||
21236 multiletter control sequences out of 15000+600000
|
||||
474749 words of font info for 46 fonts, out of 8000000 for 9000
|
||||
81 hyphenation exceptions out of 8191
|
||||
70i,6n,79p,1006b,309s stack positions out of 5000i,500n,10000p,200000b,80000s
|
||||
</home/neox/.texlive2021/texmf-var/fonts/pk/ljfour/jknapp
|
||||
en/ec/tcss1000.600pk></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts
|
||||
/cm/cmss10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cm
|
||||
ss17.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmssbx10
|
||||
.pfb>
|
||||
Output written on RECU_FISCAL.pdf (1 page, 303061 bytes).
|
||||
PDF statistics:
|
||||
32 PDF objects out of 1000 (max. 8388607)
|
||||
18 compressed objects within 1 object stream
|
||||
0 named destinations out of 1000 (max. 500000)
|
||||
11 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
|
@ -0,0 +1,117 @@
|
|||
\documentclass{article}
|
||||
|
||||
\usepackage{graphicx}
|
||||
\usepackage{tabto}
|
||||
\usepackage{datetime}
|
||||
\ddmmyyyydate
|
||||
\usepackage[a4paper, total={7in, 12.5in}]{geometry}
|
||||
|
||||
\renewcommand{\familydefault}{\sfdefault}
|
||||
|
||||
|
||||
\title{
|
||||
|
||||
\begin{flushright}
|
||||
\vspace*{2ex}
|
||||
|
||||
\huge \bf Association Libre en Communs
|
||||
\end{flushright}
|
||||
|
||||
\vspace*{-6ex}
|
||||
|
||||
\noindent\makebox[\textwidth]{
|
||||
\includegraphics[width=\paperwidth]{header.png}
|
||||
}
|
||||
|
||||
\vspace*{-9ex}
|
||||
|
||||
\begin{flushright}
|
||||
\huge Reçu de cotisation annuelle
|
||||
\end{flushright}
|
||||
}
|
||||
|
||||
\date{}
|
||||
|
||||
% --
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
\pagenumbering{gobble}
|
||||
|
||||
\vspace*{2ex}
|
||||
|
||||
\section*{Bénéficiaire des versements}
|
||||
|
||||
\vspace*{2ex}
|
||||
|
||||
\subparagraph{Dénomination} \tabto{5cm} LIBRE EN COMMUNS (RNA W941017425)
|
||||
|
||||
\vspace*{-2ex}
|
||||
|
||||
\subparagraph{Statut} \tabto{5cm} Association loi 1901 reconnue d'interêt général, à but non lucratif
|
||||
|
||||
\vspace*{-2ex}
|
||||
|
||||
\subparagraph{Adresse} \tabto{5cm} 13 RUE SULLY, 94210 SAINT-MAUR-DES-FOSSES
|
||||
|
||||
\vspace*{2ex}
|
||||
|
||||
\section*{Cotisant}
|
||||
|
||||
\vspace*{2ex}
|
||||
|
||||
\subparagraph{Nom ou dénomination} \tabto{5cm} NOM-COTISANT
|
||||
|
||||
\vspace*{-2ex}
|
||||
|
||||
\subparagraph{Statut} \tabto{5cm} STATUT-COTISANT
|
||||
|
||||
\vspace*{-2ex}
|
||||
|
||||
\subparagraph{Adresse} \tabto{5cm} ADRESSE-COTISANT
|
||||
|
||||
\section*{}
|
||||
|
||||
Le bénéficiaire rappelle que la cotisation n’est pas soumise à la TVA et qu’elle ne COTISATIONne pas lieu à la délivrance d’une facture. Elle n’ouvre pas droit au bénéfice des dispositions des articles 200, 238 bis et 885-0 V bis A du code général des impôts. Ainsi, aucune réduction d'impôt ne pourra être obtenue de ce reçu. \newline \newline Le bénéficiaire reconnaît avoir reçu au titre de la cotisation annuelle de membre la somme suivante:
|
||||
|
||||
\vspace*{2ex}
|
||||
|
||||
\subparagraph{Somme (EUR)} \tabto{5cm} ***SOMME*** €
|
||||
|
||||
\vspace*{-2ex}
|
||||
|
||||
\subparagraph{Date du versement} \tabto{5cm} DATE-VERSEMENT
|
||||
|
||||
\vspace*{-2ex}
|
||||
|
||||
\subparagraph{Mode de versement} \tabto{5cm} MODE-VERSEMENT
|
||||
|
||||
\vspace*{-3ex}
|
||||
|
||||
\section*{}
|
||||
|
||||
Le bénéficiaire, par la présente, accuse réception de votre règlement et vous reconnaît à jour de cotisation à raison de votre adhésion à notre association pour l'année civile ANNEE-CIVILE.
|
||||
|
||||
\section*{}
|
||||
|
||||
\begin{flushright}
|
||||
Pour servir et faire valoir ce que de droit,
|
||||
|
||||
\vspace*{1ex}
|
||||
|
||||
Le \today\ à Saint-Maur des Fossés,
|
||||
|
||||
Le Trésorier de Libre en Communs
|
||||
|
||||
\vspace*{2ex}
|
||||
|
||||
\includegraphics[width=1.3in]{tresorier.png}
|
||||
|
||||
\end{flushright}
|
||||
|
||||
\section*{}
|
||||
|
||||
\center Délivré par l'association Libre en Communs -- https://www.a-lec.org -- contact@a-lec.org
|
||||
|
||||
\end{document}
|
|
@ -0,0 +1,41 @@
|
|||
#!/bin/bash
|
||||
|
||||
# $1 : NOM-COTISANT
|
||||
# $2 : STATUT-COTISANT
|
||||
# $3 : ADRESSE-COTISANT
|
||||
# $4 : SOMME
|
||||
# $5 : DATE-VERSEMENT
|
||||
# $6 : MODE-VERSEMENT
|
||||
|
||||
set -e
|
||||
|
||||
#exec {BASH_XTRACEFD}> >(tail -n 1) # send set -x output to tail -n 1
|
||||
#PS4=':At line $LINENO; prior command exit status $?+'
|
||||
#set -x
|
||||
|
||||
if [ $# -ne 6 ]; then
|
||||
|
||||
echo "Nombre d'arguments incorrect"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
FILE="$1"_reçu_$(echo $5 | tr "/" ".").tex
|
||||
NOM_COTISANT=$(echo $1 | tr "/" ".")
|
||||
STATUT_COTISANT=$(echo $2 | tr "/" ".")
|
||||
ADRESSE_COTISANT=$(echo $3 | tr "/" ".")
|
||||
SOMME=$(echo $4 | tr "/" ".")
|
||||
DATE_VERSEMENT=$(echo $5 | tr "/" ".")
|
||||
MODE_VERSEMENT=$(echo $6 | tr "/" ".")
|
||||
|
||||
cat RECU_COTISATION.tex > "$FILE"
|
||||
|
||||
sed -i "s/NOM-COTISANT/$NOM_COTISANT/" "$FILE"
|
||||
sed -i "s/STATUT-COTISANT/$STATUT_COTISANT/" "$FILE"
|
||||
sed -i "s/ADRESSE-COTISANT/$ADRESSE_COTISANT/" "$FILE"
|
||||
sed -i "s/SOMME/$SOMME/" "$FILE"
|
||||
sed -i "s/DATE-VERSEMENT/$DATE_VERSEMENT/" "$FILE"
|
||||
sed -i "s/MODE-VERSEMENT/$MODE_VERSEMENT/" "$FILE"
|
||||
|
||||
pdflatex "$FILE"
|
||||
|
||||
rm -f *.aux *.log
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 180 KiB |
Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 229 KiB |
|
@ -72,11 +72,11 @@
|
|||
\subparagraph{Adresse} \tabto{5cm} ADRESSE-DONATEUR
|
||||
|
||||
|
||||
\vspace*{10ex}
|
||||
\vspace*{7ex}
|
||||
|
||||
\section*{}
|
||||
|
||||
Le bénéficiaire certifie sur l’honneur que les dons et versements qu’il reçoit ouvrent droit à la réduction d’impôt prévue aux articles 200 et 238 du Code Général des Impôts. Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d’impôt :
|
||||
Le bénéficiaire certifie sur l’honneur que les dons et versements qu’il reçoit ouvrent droit à la réduction d’impôt prévue aux articles 200 et 238 du Code Général des Impôts. \newline \newline Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d’impôt :
|
||||
|
||||
\vspace*{2ex}
|
||||
|
|
@ -43,3 +43,5 @@ sed -i "s/NATURE-DON/$NATURE_DON/" "$FILE"
|
|||
sed -i "s/MODE-VERSEMENT/$MODE_VERSEMENT/" "$FILE"
|
||||
|
||||
pdflatex "$FILE"
|
||||
|
||||
rm -f *.aux *.log
|
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 180 KiB |
After Width: | Height: | Size: 229 KiB |