WIP: nouveau règlement intérieur
This commit is contained in:
parent
daaed153ea
commit
fd9402fc82
|
@ -0,0 +1,20 @@
|
||||||
|
.PHONY: all clean
|
||||||
|
|
||||||
|
ARTICLES=$(shell cat ./table_des_matières)
|
||||||
|
|
||||||
|
all: ri.pdf
|
||||||
|
|
||||||
|
ri.md: $(ARTICLES)
|
||||||
|
cat $(ARTICLES) > ri.md
|
||||||
|
|
||||||
|
ri_partial.tex: ri.md
|
||||||
|
pandoc -t latex ri.md > ri_partial.tex
|
||||||
|
|
||||||
|
ri.tex: header.tex ri_partial.tex footer.tex
|
||||||
|
cat header.tex ri_partial.tex footer.tex > ri.tex
|
||||||
|
|
||||||
|
ri.pdf: ri.tex
|
||||||
|
xelatex ri.tex
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ri*
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Préambule
|
||||||
|
|
||||||
|
Ce texte constitue le règlement intérieur de l’association Libre en Communs.
|
||||||
|
Il est publié sous licence CC-BY-ND. Il a été approuvé le \today, en Conseil
|
||||||
|
d’Administration. Toute personne adhérente de l’association s’engage à le
|
||||||
|
respecter.
|
||||||
|
|
||||||
|
Le champ d’action de Libre en Communs a pour centre le logiciel libre tel que
|
||||||
|
défini par la Free Software Foundation (voir
|
||||||
|
\url{https://www.gnu.org/philosophy/free-sw.fr.html}).
|
||||||
|
|
||||||
|
Libre en Communs se donne un but de partage, éducation et de solidarité.
|
||||||
|
Les ressources de l’association sont limitées et ces limitations sont décidées
|
||||||
|
en fonction de contraintes techniques : nous agirons au mieux, mais jamais au
|
||||||
|
détriment d’autrui. Les personnes utilisatrices s’engagent à un usage
|
||||||
|
raisonnable de ces ressources.
|
||||||
|
|
||||||
|
Le respect entre membres est une valeur fondamentale de l’association.
|
|
@ -0,0 +1,20 @@
|
||||||
|
\section*{}
|
||||||
|
|
||||||
|
Fait à Saint-Maur des Fossés le \today, \\
|
||||||
|
|
||||||
|
\vspace*{1ex}
|
||||||
|
|
||||||
|
\textbf{Signatures}
|
||||||
|
|
||||||
|
\vspace*{1ex}
|
||||||
|
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
\begin{tabular}{ c c c }
|
||||||
|
\textit{Julian Barathieu, président} & \textit{Adrien Bourmault, trésorier} & \textit{Jean Sirmai, secrétaire}
|
||||||
|
\end{tabular}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\vspace*{2ex}
|
||||||
|
|
||||||
|
\end{document}
|
Binary file not shown.
After Width: | Height: | Size: 85 KiB |
|
@ -0,0 +1,56 @@
|
||||||
|
\documentclass{article}
|
||||||
|
|
||||||
|
\usepackage[french]{babel}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage{tabto}
|
||||||
|
\usepackage[french]{datetime2}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage[a4paper, total={7in, 12.5in}]{geometry}
|
||||||
|
\usepackage{fontspec}
|
||||||
|
\usepackage{parskip}
|
||||||
|
\usepackage{enumitem}
|
||||||
|
|
||||||
|
\geometry{margin=35pt, includeheadfoot}
|
||||||
|
\setsansfont{Liberation Sans}
|
||||||
|
\setcounter{secnumdepth}{-2}
|
||||||
|
\setlength{\parindent}{0cm}
|
||||||
|
\pagenumbering{arabic}
|
||||||
|
\setlist[itemize]{label=\textbullet}
|
||||||
|
|
||||||
|
\renewcommand{\familydefault}{\sfdefault}
|
||||||
|
|
||||||
|
\providecommand{\tightlist}{%
|
||||||
|
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
|
||||||
|
|
||||||
|
\title{
|
||||||
|
|
||||||
|
\begin{figure*}[!tp]
|
||||||
|
\vspace*{\dimexpr -1in-\topmargin-\headheight-\headsep}%
|
||||||
|
\begin{flushright}
|
||||||
|
\vspace*{7ex}
|
||||||
|
|
||||||
|
\huge \bf Association Libre en Communs
|
||||||
|
\end{flushright}
|
||||||
|
|
||||||
|
\vspace*{-10ex}
|
||||||
|
|
||||||
|
\noindent\makebox[\textwidth]{
|
||||||
|
\includegraphics[width=\paperwidth]{header.png}
|
||||||
|
}
|
||||||
|
|
||||||
|
\vspace*{-14ex}
|
||||||
|
|
||||||
|
\begin{flushright}
|
||||||
|
\huge Règlement intérieur \\
|
||||||
|
\Large Version du \today \\ \textbf{(non officielle)}
|
||||||
|
\end{flushright}
|
||||||
|
\end{figure*}
|
||||||
|
\vspace*{-7ex}
|
||||||
|
}
|
||||||
|
|
||||||
|
\date{}
|
||||||
|
|
||||||
|
% --
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
|
@ -0,0 +1,7 @@
|
||||||
|
article-preambule.md
|
||||||
|
article-conditions-admission.md
|
||||||
|
article-conditions-radiation.md
|
||||||
|
article-fonctionnement.md
|
||||||
|
article-infrastructures.md
|
||||||
|
article-conduite.md
|
||||||
|
|
Loading…
Reference in New Issue