Skip to content
Snippets Groups Projects
Commit 7995695d authored by Léon GALL's avatar Léon GALL
Browse files

Ajout d'un makefile pour la génération du latex, et pour la création d'archive.

Modification de rapport.tex : En-tête réalisée.
parent b7038835
Branches
Tags
No related merge requests found
......@@ -5,4 +5,5 @@
*.mtc0
*.out
*.toc
.DS_Store
\ No newline at end of file
.DS_Store
*.tar.gz
\ No newline at end of file
makefile 0 → 100644
LATEX = rapport.tex
ARCHIVE = snake.asm rapport.pdf
ARCHIVENAME = Beaurepere_Gall.tar.gz
latex: $(LATEX)
@echo "------ MAKING LATEX ------"
@pdflatex $(LATEX)
clean_latex:
@echo "------ CLEANING LATEX ------"
@rm *.aux 2> /dev/null || true
@rm *.log 2> /dev/null || true
@rm *.out 2> /dev/null || true
@rm *.toc 2> /dev/null || true
@rm *.mtc 2> /dev/null || true
@rm *.mtc0 2> /dev/null || true
@rm *.maf 2> /dev/null || true
dist:
@echo "------ MAKING THE ARCHIVE ------"
@tar -cvzf $(ARCHIVENAME) $(ARCHIVE)
clean_dist:
@echo "------ CLEANING THE ARCHIVE ------"
@rm $(ARCHIVENAME) 2> /dev/null || true
clean: clean_latex clean_dist
\ No newline at end of file
No preview for this file type
\documentclass[A4]{article}
\documentclass[a4paper]{article}
\usepackage{pdfpages}
\usepackage{fullpage}
\usepackage{titlesec}
\usepackage[utf8]{inputenc}
......@@ -8,18 +7,54 @@
\usepackage[french]{babel}
\usepackage[autolanguage]{numprint}
\usepackage{hyperref}
\usepackage[a4paper]{geometry}
\title{Snake} % AJOUTER LE TITRE ADEQUAT
\date{5 décembre 2021} % VERIFIER LA DATE
\author{BEAUREPERE Mathias \and GALL Léon}
\title{Architecture des ordinateurs\\\large Projet : Jeu du Snake}
\author{BEAUREPERE Mathias, GALL Léon}
\date{}
\hypersetup{
pdftitle={Snake},
pdfauthor={BEAUREPERE Mathias,GALL Léon},
pdftitle={Snake},
pdfauthor={BEAUREPERE Mathias,GALL Léon},
}
\geometry{
a4paper,
left=15mm,
top=10mm,
right=15mm,
bottom=20mm,
}
\makeatletter
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% %
% DOCUMENT %
% %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\begin{document}
\maketitle
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% HEADER %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\hspace{-0.5cm}\begin{minipage}{0.5\textwidth}
Université de Strasbourg\\
UFR de mathématique et d'informatique
\end{minipage}
\hspace*{\fill}\begin{minipage}{0.5\textwidth}
\hspace*{\fill}L2, Semestre 3, Automne 2021\\
\hspace*{\fill}\@author
\end{minipage}
\\
\begin{center}
\huge \@title
\end{center}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% RAPPORT %
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% ...
\end{document}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment