diff --git a/README.md b/README.md index f6b043d..a6876a6 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ Pour ce faire, installez TexStudio via le guide (voir fin de ce document), ouvre ## Version -1.0.0-3 +1.1.2 ## Téléchargement -Cliquez sur ce lien pour télécharger le framework HEH-Beamer : [https://github.com/gquittet/HEH-Beamer/archive/1.0.0-3.zip](https://github.com/gquittet/HEH-Beamer/archive/1.0.0-3.zip) +Cliquez sur ce lien pour télécharger le framework HEH-Beamer : [https://github.com/gquittet/HEH-Beamer/archive/1.1.2.zip](https://github.com/gquittet/HEH-Beamer/archive/1.1.2.zip) ## Installer LaTeX diff --git a/hehBeamerCore/commands/hehBeamerCommands.tex b/hehBeamerCore/commands/hehBeamerCommands.tex index dae9594..4bfde20 100644 --- a/hehBeamerCore/commands/hehBeamerCommands.tex +++ b/hehBeamerCore/commands/hehBeamerCommands.tex @@ -17,7 +17,7 @@ \newcommand{\hehBeamerInfo}{ - \begin{frame}{\space} + \begin{slide} \begin{center} Cette présentation a été réalisée avec le Framework HEH Beamer\\ HEH Beamer \hehBeamerVersion\\ @@ -25,7 +25,7 @@ \url{\hehBeamerURL} \normalsize \end{center} - \end{frame} + \end{slide} } @@ -46,7 +46,7 @@ } -\newcommand{\partie}[3]{ +\newcommand{\partie}[2]{ \def\laPartieCourante{#1} \section{#1} \input{slides/#2} @@ -54,7 +54,20 @@ \newcommand{\pdfEtNotes}{ - \setbeameroption{show notes on second screen=right} + \usepackage{pgfpages} + \setbeameroption{show notes on second screen} +} + + +\newcommand{\pdfEtNotesADroite}{ + \pdfEtNotes + \setbeameroption{show notes on second screen=right} +} + + +\newcommand{\pdfEtNotesAGauche}{ + \pdfEtNotes + \setbeameroption{show notes on second screen=left} } @@ -76,13 +89,13 @@ \newcommand{\tableDesMatieres}{ - \begin{frame}{Table des matières} + \begin{slide}[Table des matières] \tableofcontents[currentsection, currentsubsection, hideothersubsections, sectionstyle=show/hide, subsectionstyle=show/shaded/hide] - \end{frame} + \end{slide} } diff --git a/hehBeamerCore/definitions/hehBeamerDefinitions.tex b/hehBeamerCore/definitions/hehBeamerDefinitions.tex index 5391fdc..6044c40 100644 --- a/hehBeamerCore/definitions/hehBeamerDefinitions.tex +++ b/hehBeamerCore/definitions/hehBeamerDefinitions.tex @@ -6,4 +6,4 @@ % HEH Beamer version -\def\hehBeamerVersion{1.0.0} +\def\hehBeamerVersion{1.1.2} diff --git a/hehBeamerCore/environments/hehBeamerEnvironments.tex b/hehBeamerCore/environments/hehBeamerEnvironments.tex new file mode 100644 index 0000000..c9ac37d --- /dev/null +++ b/hehBeamerCore/environments/hehBeamerEnvironments.tex @@ -0,0 +1,6 @@ +%!TEX root = ../../presentation.tex + +\newenvironment{slide}[1][\unskip]{ + \begin{frame}{#1} + \noindent +}{\end{frame}} \ No newline at end of file diff --git a/presentation.pdf b/presentation.pdf index acb44b8..f5d7a60 100644 Binary files a/presentation.pdf and b/presentation.pdf differ diff --git a/presentation.tex b/presentation.tex index ad1549f..bcdf5b7 100644 --- a/presentation.tex +++ b/presentation.tex @@ -1,3 +1,4 @@ +\def\pgfsysdriver{pgfsys-dvipdfm.def} \documentclass[serif]{beamer} % Charge les paquets @@ -10,6 +11,8 @@ \input{hehBeamerCore/definitions/hehBeamerDefinitions} % Charge le thème de la HEH \input{hehBeamerCore/theme/hehBeamerTheme} +% Charge les environnements personnalisés +\input{hehBeamerCore/environments/hehBeamerEnvironments} % Charge les commandes personnalisées \input{hehBeamerCore/commands/hehBeamerCommands} @@ -41,13 +44,22 @@ \titreAbrege{Titre abrégé} % L'année scolaire (exemple: 2017 -- 2018). Le double tiret est important. -\annee{20XX--20XX} +\annee{2017--2018} % L'interligne souhaité (par défaut 1.5) \interligne{1.5} % Taille image de la page de garde -\configure{\tailleLogoCampus}{0.35} +\configure{\tailleLogoCampus}{0.45} + +% Notes +% Notes par défaut +%\pdfEtNotes +% Notes à droite +%\pdfEtNotesADroite +% Notes à gauche +%\pdfEtNotesAGauche + @@ -58,10 +70,13 @@ \input{hehBeamerCore/configuration/hehBeamerDocumentConfiguration} + + + \begin{document} \pageDeTitre{} -\hehBeamerInfo{} +\hehBeamerInfo{} \end{document}