Start plaidoyer
This commit is contained in:
parent
61c17f282d
commit
00f524a26b
4 changed files with 58 additions and 0 deletions
16
art-argumenter/plaidoyer/Makefile
Normal file
16
art-argumenter/plaidoyer/Makefile
Normal 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
|
BIN
art-argumenter/plaidoyer/img/logo-efrei.jpg
Normal file
BIN
art-argumenter/plaidoyer/img/logo-efrei.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
25
art-argumenter/plaidoyer/main.tex
Normal file
25
art-argumenter/plaidoyer/main.tex
Normal 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}
|
17
art-argumenter/plaidoyer/presentation.sty
Normal file
17
art-argumenter/plaidoyer/presentation.sty
Normal 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}{}
|
Loading…
Reference in a new issue