Start plaidoyer

This commit is contained in:
flyingscorpio@pinebookpro 2021-12-06 16:32:31 +01:00
parent 61c17f282d
commit 00f524a26b
4 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,16 @@
filename=$(shell basename $(shell pwd))
timestamped_file=$(shell date +%Y-%m-%d_%H:%M)
all: snapshot
snapshot: main.tex
@latexmk -pdf main.tex >/dev/null 2>&1
@if ! cmp --silent build/main.pdf ${filename}_*.pdf; then \
touch ${filename}_tmp.pdf; \
rm ${filename}*.pdf; \
cp build/main.pdf ${filename}_${timestamped_file}.pdf; \
echo "Updated"; \
fi
clean:
@rm -rf build 2>/dev/null

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,25 @@
\documentclass{beamer}
\usepackage{presentation}
\author{Tunui Franken}
\title{...}
\institute{Efrei Paris}
\logo{\includegraphics[width=0.1\textwidth]{./img/logo-efrei.jpg}}
\begin{document}
\begin{frame}
\maketitle{}
\end{frame}
\begin{frame}
\tableofcontents{}
\end{frame}
\end{document}

View file

@ -0,0 +1,17 @@
\ProvidesPackage{presentation}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{listings}
\usepackage{tabularx}
\usepackage{booktabs}
\lstset{%
basicstyle=\small\ttfamily,
columns=flexible,
breaklines=true
}
\usetheme{Warsaw}
\usecolortheme{seahorse}
\setbeamertemplate{navigation symbols}{}