first commit

This commit is contained in:
Lukian 2024-09-28 15:59:39 +02:00
commit c8da6f896e
5 changed files with 66 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
*.pdf
*.aux
*.lof
*.log
*.toc

BIN
images/logo_ensibs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

4
makefile Normal file
View file

@ -0,0 +1,4 @@
make:
pdflatex -jobname=name src/source.tex
rm -rf *.lof *.log *.toc *.aux
rm -rf src/*.lof src/*.log src/*.toc src/*.aux

35
src/cover_page.tex Normal file
View file

@ -0,0 +1,35 @@
\begin{titlepage}
\begin{figure}[h]
\centering
\includegraphics[width=0.20\textwidth]{logo_ensibs.png}
\end{figure}
\begin{center}
\large ICE - Informatique et Cybersécurité (Cybersécurité du logiciel)
\vspace{0.5cm}
\rule{\textwidth}{1pt}
\Huge Title
\large Subtitle
\rule{\textwidth}{1pt}
\large Le \today
\end{center}
\vspace{0.5cm}
\begin{figure}[h]
\centering
\includegraphics[width=0.75\textwidth]{file_name}
\end{figure}
\vspace{-0.5cm}
\center \it Mascotte du langage Rust
\end{titlepage}

22
src/source.tex Normal file
View file

@ -0,0 +1,22 @@
\documentclass[12pt, a4paper]{article}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage[french]{babel}
\usepackage[T1]{fontenc}
\geometry{hmargin=2.5cm,vmargin=1.5cm}
\graphicspath{{images/}}
\title{titre}
\author{Lukian LEIZOUR}
\date{\today}
\begin{document}
\include{src/cover_page}
\tableofcontents
\listoffigures
\newpage
\end{document}