add makefile and comment minted
This commit is contained in:
parent
99a039898a
commit
c2267834e8
3 changed files with 19 additions and 3 deletions
1
TP1/Rapport/.gitignore
vendored
1
TP1/Rapport/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
!*.tex
|
||||
!Makefile
|
||||
|
|
15
TP1/Rapport/Makefile
Normal file
15
TP1/Rapport/Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
NAME = rapport
|
||||
TEX = $(NAME).tex
|
||||
SRC = $(TEX)
|
||||
PDF = $(TEX:.tex=.pdf)
|
||||
# FLAGS = -shell-escape # pour minted
|
||||
|
||||
all: $(PDF)
|
||||
|
||||
$(PDF): $(SRC)
|
||||
@pdflatex $(FLAGS) $(TEX)
|
||||
pdflatex $(FLAGS) $(TEX)
|
||||
|
||||
clean:
|
||||
rm -rf _minted-$(NAME)/ $(PDF) $(NAME).aux $(NAME).log $(NAME).out \
|
||||
$(NAME).toc $(NAME).fdb_latexmk $(NAME).fls $(NAME).synctex.gz
|
|
@ -10,12 +10,12 @@
|
|||
\usepackage[hidelinks]{hyperref} % liens cliquable dans la table des matières
|
||||
|
||||
\usepackage{graphicx} % images
|
||||
\usepackage{caption}
|
||||
% \usepackage{caption}
|
||||
|
||||
\usepackage[a4paper, left=20mm, top=20mm]{geometry} % dimensions de la page
|
||||
|
||||
\usepackage{minted} % intégration code
|
||||
\usemintedstyle{emacs}
|
||||
% \usepackage{minted} % intégration code
|
||||
% \usemintedstyle{emacs}
|
||||
|
||||
\title{\textbf{TP1 - Sokoban}}
|
||||
\author{César PICHON, Florian POSEZ, Omar ANOUAR, Anri KENNEL\\
|
||||
|
|
Reference in a new issue