Document Classes ⇒ beamer | Controlling the Appearance of Presentation Plan
-
- Posts: 36
- Joined: Sun May 20, 2012 6:28 am
beamer | Controlling the Appearance of Presentation Plan
Hi all,
I want the plan in a beamer presentation does not appear in the first and second page.
any help?
I want the plan in a beamer presentation does not appear in the first and second page.
any help?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10344
- Joined: Mon Mar 10, 2008 9:44 pm
Re: beamer | Controlling the Appearance of Presentation Plan
Hi,
which plan do you mean?
Stefan
which plan do you mean?
Stefan
LaTeX.org admin
-
- Posts: 36
- Joined: Sun May 20, 2012 6:28 am
Re: beamer | Controlling the Appearance of Presentation Plan
The plan of my presentation is displayed in the margin and depending on the style it appears either above or to the left. For me, I use the theme Paloalto, so my plan appears to the left of the presentation.
- Stefan Kottwitz
- Site Admin
- Posts: 10344
- Joined: Mon Mar 10, 2008 9:44 pm
beamer | Controlling the Appearance of Presentation Plan
Ah, so something like a navigation structure like bookmarks. You could use a
Stefan
plain
frame style for the first frames:Code: Select all
\begin{frame}[plain]
...
\end{frame}
LaTeX.org admin
-
- Posts: 36
- Joined: Sun May 20, 2012 6:28 am
Re: beamer | Controlling the Appearance of Presentation Plan
I want to keep the same style for all pages but only I want the writing in the margin of page 1 and 2 are not displayed. C.à.d plan is displayed only after the page that refers to the plan
- Stefan Kottwitz
- Site Admin
- Posts: 10344
- Joined: Mon Mar 10, 2008 9:44 pm
Re: beamer | Controlling the Appearance of Presentation Plan
Perhaps post a compilable code example with your chosen theme and settings, some dummy frames and the plan - an example which could get the desired fix.
Stefan
Stefan
LaTeX.org admin
-
- Posts: 36
- Joined: Sun May 20, 2012 6:28 am
beamer | Controlling the Appearance of Presentation Plan
here is the link of the presentation that I used :
http://code.google.com/p/memoire-master ... beamer.tex
I change by
I want that:
"titre du bas", "A. Perrut,d’après Marie Duflot", "Introduction", "overlays" and subsections of "overlays", "L’apparence" and subsections of "L’apparence" do not appear in the left marge only appears after the page of the plan.
http://code.google.com/p/memoire-master ... beamer.tex
Code: Select all
\documentclass{beamer}
\usetheme{Antibes}% le thème choisi pour ma présentation. Essayer aussi Warsaw Singapore Pittsburgh Montpellier Malmoe Luebeck Goettingen...
\usepackage[frenchb]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{epsfig,pslatex,colortbl}
\usepackage{graphics}
\usepackage{graphicx}%pour les includegraphics
\usepackage{array}% pour des tableaux particuliers. Nécessaire pour les révéler colonne par colonne
%\setbeamercovered{transparent}%l'autre option : invisible, cache totalement le texte pas encore découvert (ie, n'utilise pas le ``grisé'').
\setbeamercovered{invisible}
\colorlet{orange}{red!70!yellow}% mes petites couleurs que j'aime bien
\colorlet{mauve}{blue!70!red}
\colorlet{brouge}{red!70!blue}
\addtobeamertemplate{footline}{\insertframenumber/\inserttotalframenumber}
%pour ajouter un numéro de page en bas.
\title[titre du bas]{Les présentations en Beamer}
%l'argument entre [] est une version courte du titre, qu'on met en bas des transparents.
\author{A. Perrut, d'après Marie Duflot}
\date{\today}
\institute{Master SITN - UCBL}
%\logo{\includegraphics[scale=0.5]{universite.gif}}% je définis le logo qui sera mis sur tous les transparents
\AtBeginSection[] % pour mettre la table des matières
% % au début de chaque section
{ \begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame} }
\begin{document}
\begin{frame}\titlepage
\end{frame}
\begin{frame}
\frametitle{Plan de l'exposé}
\tableofcontents% comme en latex normal, met la table des matières
\end{frame}
\section{Introduction}
\begin{frame}
\frametitle{Pourquoi utiliseriez-vous Beamer~}
\begin{quote}Essentiellement pour taper des maths.\end{quote}
\end{frame}
\begin{frame}
\frametitle{Pour commencer\dots}
\framesubtitle{On peut rajouter des sous-titres}
\begin{itemize}
\item L'objet de base : les ``frame''
\item {\tt $\backslash$begin\{frame\}\\
$\backslash$frametitle\{Une présentation simple\}\\
$\backslash$end\{frame\}}
\item Le contenu : à vous de l'écrire !
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Et pour compiler}
\begin{itemize}
\item Le but : produire du pdf
\begin{itemize}
\item soit latex, puis on exporte le dvi en pdf,
\item soit pdflatex.\end{itemize}
\item les deux marchent (mais pdflatex est inopérant pour les images eps).
\end{itemize}
\end{frame}
\section{overlays}
\subsection{pause}
\begin{frame}
\frametitle{Une présentation simple}
\begin{itemize}
\item L'objet de base : les ``frame''\pause
\item {\tt $\backslash$begin\{frame\}\\ \pause
$\backslash$frametitle\{Une présentation simple\}\\ \pause
$\backslash$end\{frame\}} \pause
\item Pour révéler les transparents pas à pas\pause
\item la commande {\tt $\backslash$pause}
\end{itemize}
\end{frame}
\subsection{uncover}
\begin{frame}<1-5>%je précise les numéros des transparents à montrer, car je veux qu'il en montre plus que ce qu'il aurait calculé automatiquement (2 à 4)
\frametitle{En jouant avec la commande uncover\\}
\uncover<-2>{On peut mettre du texte jusqu'à un certain transparent (le 2)\\}
\uncover<2->{Ou à partir d'un certain transparent (le 2)\\}
\uncover<3>{Juste sur un transparent (le 3)\\}
\uncover<3-4>{Ou sur quelques uns (3 et 4)\\}
\uncover<4->{à partir d'un certain transparent (le 4)\\}
\end{frame}
\subsection{only, visible}
\begin{frame}
\frametitle{Différence entre only et uncover}
\begin{itemize}
\item Un texte qui \only<1>{n'}est \only<1>{pas }là.
\item Un texte qui \uncover<1>{n'}est \uncover<1>{pas} là.
\item Un texte qui \visible<1>{n'}est \visible<1>{pas} là.
\end{itemize}
Avec only le texte ne prend aucune place sur les transparents où il
n'apparait pas. Avec visible le texte disparait mais garde sa place.
\begin{itemize}
\only<3>{\item c'est moins joli\medskip}
\item en vertical.
\end{itemize}
\end{frame}
\subsection{Méthodes automatiques}
\begin{frame}
On peut :
\begin{itemize}
\item<1-> dire directement
\item<2-> dans les items
\item<3-> quand ils doivent apparaitre (ex : $\backslash${\tt item<3->})
\end{itemize}
\end{frame}
\begin{frame}
Ou alors :
\begin{itemize}[<+->]
\item mettre l'option {\tt [<+->]} à itemize
\item pour qu'il le fasse
\item tout seul
\end{itemize}
\end{frame}
\begin{frame}
On peut encore :
\begin{itemize}[<+->]
\item mettre l'option {\tt [<+->]} à itemize
\item comme précédemment
\item<.-> et l'option {\tt [<.->]} à un item
\item pour qu'il apparaisse avec le précédent
\end{itemize}
\end{frame}
\subsection{tableaux}
\begin{frame}
On peut les révéler colonne par colonne : %nécessite le package array
% le onslide sans argument à la fin assure que le premier point de
%la ligne suivant sera présent dès le premier slide
\begin{tabular}{c<{\onslide<2->}c<{\onslide<3->}c<{\onslide<4->}c<{\onslide}c}
& très vieil algo & vieil algo & notre algo \\
petit pb & 2 jours & 6h & $10^-3$ s\\
moyen pb & 3 mois & 15h & 0.2 s \\
gros pb & $12\times 10^{234}$ ans & 3 mois & 15 min \\
\end{tabular}\pause[5]\medskip% pause[5] réalise 5 fois la commande pause
Ou bien ligne par ligne (beaucoup plus facile)~:
\begin{tabular}{cccc}
& très vieil algo & vieil algo & notre algo\pause \\
petit pb & 2 jours & 6h & $10^-3$ s\pause \\
moyen pb & 3 mois & 15h & 0.2 s\pause \\
gros pb & $12\times 10^234$ ans & 3 mois & 15 min\pause \\
\end{tabular}
\end{frame}
\section{L'apparence}
\subsection{Blocks}
\begin{frame}
\frametitle{Les blocks}
Pour écrire des théorèmes ou autres propositions, il existe des environnements tout faits.
\begin{example}
Un exemple
\end{example}
\begin{theorem}
Un théorème
\end{theorem}
Le problème c'est que le titre est automatiquement mis en anglais...
\end{frame}
\begin{frame}
\frametitle{On peut les personnaliser}
\begin{block}{Leur donner un titre}
Et le contenu qu'on veut (block)
\end{block}
\begin{exampleblock}{Même chose}
Pour le vert (exampleblock)
\end{exampleblock}
\begin{alertblock}{Et encore}
Voire même en rouge pour attirer l'attention (alertblock)
\end{alertblock}
\end{frame}
\setbeamercolor{block title example}{fg=black,bg=red!20!green!50!white}
\setbeamercolor{block title}{fg=black,bg=blue!50!white}
\setbeamercolor{block title alerted}{fg=black,bg=red!70!white}
\begin{frame}
\frametitle{On peut aussi ..}
\begin{block}{Changer leur couleur}
si
\end{block}
\begin{exampleblock}{on trouve}
que
\end{exampleblock}
\begin{alertblock}{c'est}
trop flashy/agressif
\end{alertblock}
\end{frame}
\subsection{caractères}
\begin{frame}
\hypertarget<1>{plusloin}
\frametitle{Différentes façons d'écrire}
\begin{itemize}
\item Comme en \LaTeX\ habituel, on peut écrire
\begin{itemize}
\item {\em en italique}
\item \underline{souligné}
\item {\bf en gras}
\item ... et sûrement d'autres
\end{itemize}
\item Mais aussi
\begin{itemize}
\item Rendre \alert{quelque chose} plus flashy (alert)
\end{itemize}
\end{itemize}
\end{frame}
\part{}
\begin{frame}
\frametitle{part}
La commande \texttt{part} permet de créer des parties dans l'exposé.\medskip
A chaque utilisation de part, on réinitialise l'afichage des sections dans l'en-tête.\medskip
\c Ca permet de ne pas surcharger l'en-tête pour de longs exposés.
\end{frame}
\section{Graphiques}
\begin{frame}
pdflatex accepte les formats suivants
\begin{itemize}
\item pdf, jpg, jpeg et png
\end{itemize}
Il faut utiliser le package \texttt{graphics} et la commande \texttt{includegraphics}
latex + dvips accepte les formats suivants
\begin{itemize}
\item ps, eps
\end{itemize}
j'utilise le package epsfig et includegraphics.
\end{frame}
\begin{frame}
Un moyen pratique de mettre un graphique : l'environnement columns
\begin{columns}[t]
\column{5cm}
On écrit le texte explicatif à gauche et on place le figure à
côté. C'est une mise en page agréable.
\column[T]{5cm}
\includegraphics[width=5cm]{gerland.jpg} \end{columns}
\end{frame}
\section{Animations}
\begin{frame}
\frametitle{On peut animer les transparents}
\animate<2-6>
On peut laisser la première partie s'afficher calmement.\pause
Puis \pause afficher \pause la suite \pause en cascade \pause si on veut.\pause
Mais il y a aussi d'autres effets disponibles ({\sl cf.} prochains transparents)
\end{frame}
\begin{frame}
\frametitle{On peut animer les transparents}
\transdissolve<1-2>[duration=0.2]%ce genre de chose marche mieux avec pdflatex
On peut laisser la première partie s'afficher calmement.\pause
\begin{itemize}
\item {\bf Les transparents peuvent se dissoudre}
\item se révéler horizontalement
\item ... ou verticalement
\item arriver des 4 coins
\item avoir un effet ``glitter''
\item et bien d'autres ...
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{On peut animer les transparents}
\transblindsvertical<1-2>
On peut laisser la première partie s'afficher calmement.\pause
\begin{itemize}
\item Les transparents peuvent se dissoudre
\item {\bf se révéler horizontalement}
\item ... ou verticalement
\item arriver des 4 coins
\item avoir un effet ``glitter''
\item et bien d'autres ...
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{On peut animer les transparents}
\transglitter<1-2>[direction=90]
On peut laisser la première partie s'afficher calmement.\pause
\begin{itemize}
\item Les transparents peuvent se dissoudre
\item se révéler horizontalement
\item ... ou verticalement
\item arriver des 4 coins
\item {\bf avoir un effet ``glitter''}
\item et bien d'autres ...
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{En théorie on peut même}
Mettre des sons ou des films ...\medskip
Mais ce n'est pas pour les gens sérieux
\end{frame}
\part{}
\begin{frame}
\frametitle{Pour plus d'infos}
\begin{thebibliography}{10}
\beamertemplatearticlebibitems
\bibitem{userguide}
Till Tantau.
\newblock User's Guide to the Beamer Class, Version 3.01.
\newblock Disponible sur {\tt http://latex-beamer.sourceforge.net}
\beamertemplatebookbibitems
\bibitem{Latexcompanion}
Michel Goossens, Frank Mittelbach et Alexander Samarin
\newblock {\em The \LaTeX companion}.
\newblock Addison Wesley, 2002.
\end{thebibliography}
\end{frame}
\end{document}
Code: Select all
\usetheme{Antibes}
Code: Select all
\usetheme{PaloAlto}
"titre du bas", "A. Perrut,d’après Marie Duflot", "Introduction", "overlays" and subsections of "overlays", "L’apparence" and subsections of "L’apparence" do not appear in the left marge only appears after the page of the plan.
Last edited by localghost on Wed Jun 27, 2012 7:25 pm, edited 2 times in total.
-
- Posts: 36
- Joined: Sun May 20, 2012 6:28 am
beamer | Controlling the Appearance of Presentation Plan
Hi,
here is my presentation:
I want that my presentation also do not contain chapr1 and chapr2 in the marge only after slide 1 and 2.
any help?
here is my presentation:
Code: Select all
\documentclass{beamer}
% Class options include: notes, notesonly, handout, trans,
% hidesubsections, shadesubsections,
% inrow, blue, red, grey, brown
% Theme for beamer presentation.
\usepackage{beamerthemesplit}
\usepackage{multicol}
%\usepackage{color}
% Other themes include: beamerthemebars, beamerthemelined,
% beamerthemetree, beamerthemetreebars
\usetheme{PaloAlto}
\usecolortheme{orchid}
\title{title} % Enter your title between curly braces
\author{author} % Enter your name between curly braces
\date{\today} % Enter the date or \today between curly braces
\begin{document}
% Creates title page of slide show using above information
\begin{frame}
\titlepage
\end{frame}
\section[Outline]{}
\begin{frame}
\tableofcontents
\end{frame}
\section{chapr1}
\begin{frame}
\frametitle{}
\end{frame}
\section{chapr2}
\begin{frame}
\frametitle{}
\end{frame}
\end{document}
[/MWE]
and here is an example that answers to my problem :
[MWE]\documentclass[10pt, hyperref={pdfpagemode=FullScreen}]{beamer} % (2) version
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{multirow, array, subfigure, hhline, enumerate, comment, url, pifont}
\usepackage{beamerthemesplit}
\usepackage{graphics}
\usepackage{pgf}
%\usepackage{multimedia}
\usetheme{Warsaw}
\usefonttheme{structurebold}
\setbeamercovered{transparent}
\title[title]{title}
\setbeamercolor*{author in head/foot}{parent=palette tertiary}
\setbeamercolor*{title in head/foot}{parent=palette secondary}
\setbeamercolor*{date in head/foot}{parent=palette primary}
\setbeamercolor*{page in head/foot}{parent=palette tertiary}
\pgfdeclareimage[width=4cm]{scheme0}{scheme0}
\pgfdeclareimage[width=4cm]{scheme1}{scheme1}
\pgfdeclareimage[width=4cm]{scheme2}{scheme2}
\pgfdeclareimage[width=4cm]{scheme3}{scheme3}
\pgfdeclareimage[width=4cm]{scheme4}{scheme4}
\defbeamertemplate*{footline}{infolines theme}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor~~(\insertshortinstitute)
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.60\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{page in head/foot}
\insertframenumber / \inserttotalframenumber
\end{beamercolorbox}
}%
}
\begin{document}
\frame
{
\titlepage
}
\frame
{
\frametitle{Plan}
\tableofcontents[part=1,pausesections]
}
%--------------------------------------------------------------------
\part<presentation>{Main Talk}
\AtBeginSection[]{\begin{frame}<beamer>\frametitle{Plan}\tableofcontents[currentsection]\end{frame}}
\section[Chapr1]{Chapr1}
\frame
{
\frametitle{}
}
\AtBeginSection[]{\begin{frame}<beamer>\frametitle{Plan}\tableofcontents[currentsection]\end{frame}}
\section[Chapr2]{Chapr2}
\frame{
\frametitle{}
}
\end{document}
any help?
