import de beamer-skel
|
@ -8,3 +8,4 @@
|
|||
*.synctex.gz
|
||||
*~
|
||||
*.swp
|
||||
build-messages-*.txt
|
||||
|
|
|
@ -0,0 +1,43 @@
|
|||
SRC := $(wildcard *.tex)
|
||||
OBJPDF := $(SRC:tex=pdf)
|
||||
RM := rm --force
|
||||
TEXPDFPRG := xelatex
|
||||
TEXPDFOPT := -file-line-error
|
||||
DATE := `date +'%d%m%Y-%H%M%S'`
|
||||
BUILDLOG := build-messages-$(DATE).txt
|
||||
LATEXBUILD := $(TEXPDFPRG) $(TEXPDFOPT)
|
||||
|
||||
define latexbuild
|
||||
@echo "Rerun to get cross-references" > $1.log
|
||||
@while [ `grep -c "Rerun to get cross-references" $1.log` -ne 0 ] ; \
|
||||
do \
|
||||
echo $(TEXPDFPRG) $(TEXPDFOPT) $2 ; \
|
||||
if ! $(TEXPDFPRG) $(TEXPDFOPT) $2 | tee -a ./$(BUILDLOG) ; then \
|
||||
cat $*.log ; \
|
||||
rm $@ > /dev/null 2>&1 ; \
|
||||
echo "ret: $?" ; \
|
||||
exit 255 ; \
|
||||
fi ; \
|
||||
done
|
||||
endef
|
||||
|
||||
all: $(OBJPDF)
|
||||
|
||||
%.pdf: %.tex
|
||||
$(call latexbuild, $*, $< )
|
||||
$(call latexbuild, $*, $< )
|
||||
|
||||
clean:
|
||||
$(RM) *.aux
|
||||
$(RM) *.d
|
||||
$(RM) *.log
|
||||
$(RM) *.nav
|
||||
$(RM) *.out
|
||||
$(RM) *.snm
|
||||
$(RM) *.toc
|
||||
|
||||
fclean: clean
|
||||
$(RM) $(OBJPDF)
|
||||
$(RM) *.txt
|
||||
|
||||
re: fclean all
|
After Width: | Height: | Size: 177 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 91 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 133 KiB |
|
@ -0,0 +1,106 @@
|
|||
\documentclass{beamer}
|
||||
|
||||
%\usertheme{Madrid}
|
||||
\setbeamercovered{transparent}
|
||||
\setcounter{tocdepth}{2}
|
||||
\usepackage[french]{babel}
|
||||
%\usepackage[utf8,utf8x]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{xunicode} %Unicode extras!
|
||||
\usepackage{xltxtra} %Fixes
|
||||
\setmainfont{CaviarDreams}
|
||||
\usepackage{multicol}
|
||||
%\usepackage{colortbtl}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{verbatim} % Pour l'insertion de fichier en mode verbatim
|
||||
\usepackage{ucs}
|
||||
\usepackage{tabto}
|
||||
\usepackage{xcolor}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{hyperxmp}
|
||||
\hypersetup{%
|
||||
colorlinks=true,linkcolor=blue,urlcolor=blue,pdfpagemode=UseNone,
|
||||
pdftitle={TITRE A CHANGER},
|
||||
pdfkeywords={distribution, GNU, linux, eole, éducation, nationale, ubuntu},
|
||||
pdfauthor={AUTHEUR},
|
||||
pdflang={fr-FR},
|
||||
pdfcopyright={Copyright © 2012 Cadoles}, % Nécessite XeTeX
|
||||
pdflicenseurl={http://creativecommons.org/licenses/by-nc-sa/2.0/fr/},
|
||||
}
|
||||
%\usecolortheme{crane}
|
||||
\definecolor{UniBlue}{RGB}{83,121,180}
|
||||
\definecolor{CleanWhite}{RGB}{255,255,255}
|
||||
\setbeamercolor{title}{fg=UniBlue}
|
||||
\setbeamercolor{frametitle}{fg=CleanWhite}
|
||||
\setbeamercolor{structure}{fg=UniBlue}
|
||||
\newcommand{\eolesmall}{
|
||||
\begin{minipage}[c]{0.10\textwidth}
|
||||
\includegraphics[width=1cm]{beamer-skel/img/logo-eole.png}
|
||||
\end{minipage}
|
||||
}
|
||||
\newcommand{\eolebig}{\includegraphics[width=2cm]{beamer-skel/img/logo-eole.png}}
|
||||
\newcommand{\eolefull}{\includegraphics{beamer-skel/img/logo-eole.png}}
|
||||
%\setmonofont[Scale=0.86]{Andale Mono}
|
||||
%\usepackage{colortab}
|
||||
|
||||
\setbeamertemplate{background}{\includegraphics[width=128mm]{beamer-skel/img/banner01.png}}
|
||||
|
||||
\title[]{Titre}
|
||||
|
||||
\subtitle{Sous titre}
|
||||
|
||||
\author[Equipe Auteur]{Auteur}
|
||||
|
||||
\institute[E.O.L.E]{\includegraphics[width=2cm]{beamer-skel/img/logo-eole.png}}
|
||||
%\institute[Cadoles]{\includegraphics[width=2cm]{beamer-skel/img/logo-cadoles-01.png}}
|
||||
|
||||
\date{{\small 19 octobre 2012}}
|
||||
|
||||
\subject{Talks}
|
||||
|
||||
\AtBeginSubsection[]
|
||||
{
|
||||
\begin{frame}<beamer>
|
||||
\frametitle{}
|
||||
\tableofcontents[currentsection,currentsubsection]
|
||||
\end{frame}
|
||||
}
|
||||
|
||||
|
||||
\logo{
|
||||
\includegraphics[width=1cm]{beamer-skel/img/logo-ecologie.png}~
|
||||
\hspace{120pt}
|
||||
\includegraphics[width=2cm]{beamer-skel/img/logo-cadoles-01.png}~
|
||||
\hspace{113pt}
|
||||
\includegraphics[width=1cm]{beamer-skel/img/logo_en.jpg}~
|
||||
}
|
||||
|
||||
\begin{document}
|
||||
|
||||
% Page de titre
|
||||
\begin{frame}
|
||||
\titlepage
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}
|
||||
\frametitle{Ma Diapo}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}
|
||||
\frametitle{Licence}
|
||||
Cette œuvre est mise à disposition sous licence \href{http://creativecommons.org/licenses/by-nc-sa/2.0/fr/}{\textsc{cc-by-nc-sa-2.0}}
|
||||
|
||||
\begin{itemize}
|
||||
\item Attribution
|
||||
\item Pas d’Utilisation Commerciale
|
||||
\item Partage dans les Mêmes Conditions 2.0
|
||||
\item France
|
||||
\end{itemize}
|
||||
|
||||
Pour voir une copie de cette licence, visitez
|
||||
\href{http://creativecommons.org/licenses/by-nc-sa/2.0/fr/}{http://creativecommons.org/licenses/by-nc-sa/2.0/fr/}
|
||||
ou écrivez à Creative Commons, 444 Castro Street, Suite 900,
|
||||
Mountain View, California, 94041, USA.
|
||||
\end{frame}
|
||||
|
||||
\end{document}
|