PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : beamer theme dresden - Folienzahlen



Barny.G
14-02-2009, 16:20
Hallo,

es ist sicher ein einfach' Ding, aber es will mir nicht gelingen. Ich hätte gern auf jede Folie meines (beamer)-Vortrages eine Seiten(Folien)Nummer. Außer auf die Startseite. Ach ja, und es soll nict "3/7" sondern ausschließlich die aktuelle Seitenzahl angezeigt werden...


%\setbeamertemplate{footline}[frame number]

hilft mir nicht weiter, weil da die Fußleiste des beamerthemas verloren geht...

Hat jemand eine Idee?

Ach so und ein minimal-Beispiel:

\documentclass {beamer}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[squaren]{SIunits}
\usepackage[toc]{multitoc}
\addto\captionsngerman{
\renewcommand{\figurename}{Abb.}
\renewcommand{\tablename}{Tab.}
}
\usetheme[compress]{Dresden}
\setbeamertemplate{navigation symbols}{}

\begin{document}
\maketitle % Titelfolie wird erzeugt

%%---------------------------------------------------------------------------
%%---------------------------------------------------------------------------
\section{preamble}
\begin{frame}
The common methods of orientation of unknown subsurfaced reference points are based of relative techniques, e.g.
\end{frame}
%%---------------------------------------------------------------------------
%%---------------------------------------------------------------------------
\end{document}

Ich hoffe es ist nicht zu lang ;)

Beste Grüße

Stephan

mechanicus
14-02-2009, 17:10
Hallo,


Wo genau soll den die Seitezahl hin? Hier eine Möglichkeit.


\documentclass {beamer}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[squaren]{SIunits}
\usepackage[toc]{multitoc}
\addto\captionsngerman{
\renewcommand{\figurename}{Abb.}
\renewcommand{\tablename}{Tab.}
}
\usetheme[compress]{Dresden}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}
{%
\begin{beamercolorbox}[colsep=1.5pt]{upper separation line foot}
\end{beamercolorbox}
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}%
\leavevmode{\usebeamerfont{author in head/foot}\insertshortauthor}%
\hfill%
{\usebeamerfont{institute in head/foot}\usebeamercolor[fg]{institute in head/foot}\insertshortinstitute}%
\end{beamercolorbox}%
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
{\usebeamerfont{title in head/foot}\insertshorttitle\hfill\thepage}%
\end{beamercolorbox}%
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot}
\end{beamercolorbox}
}
\author{Du}
\title{Endlich fertig?}
\date{\today}

\begin{document}
\frame[plain]{\titlepage}

%%---------------------------------------------------------------------------
%%---------------------------------------------------------------------------
\section{preamble}
\begin{frame}
The common methods of orientation of unknown subsurfaced reference points are based of relative techniques, e.g.
\end{frame}
%%---------------------------------------------------------------------------
%%---------------------------------------------------------------------------
\end{document}

Barny.G
14-02-2009, 18:15
Hallo mecanicus,


Wo genau soll den die Seitezahl hin? Hier eine Möglichkeit.

da ich im Moment an einem anderen Rechner sitze kann ich leider Deinen Vorschlag noch nicht ausprobieren, jedoch die Frage kann ich beantworten:
unten rechts, über dem blauen Balken, den das beamer-theme vorgibt.

Im Übrigen scheint mir das eine ganze Menge Code für einen solch "kleines" Problem zu sein :o geht's auch etwas einfacher? :):)

Bestimmt nicht... Ich bin eben ein fauler Sack ;)

Ähhmm, ich hatte das Minimalbeispiel etwas verkürzt. Selbstverständlich habe ich die notwendigen Variablen (Institut, Autor, Datum usw.) belegt, so dass in "meinem" besetzten Thema in den Balken auch was drin steht...

Viele Grüße und DANKE!

Stephan

mechanicus
14-02-2009, 18:41
Bestimmt nicht... Ich bin eben ein fauler Sack ;)
Das kannst du doch auch sein. Ist doch nur noch copy-paste.


\documentclass {beamer}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[squaren]{SIunits}
\usepackage[toc]{multitoc}
\addto\captionsngerman{
\renewcommand{\figurename}{Abb.}
\renewcommand{\tablename}{Tab.}
}
\usetheme[compress]{Dresden}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}
{%
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{upper separation line foot}
\hfill Folie~\thepage
\end{beamercolorbox}
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}%
\leavevmode{\usebeamerfont{author in head/foot}\insertshortauthor}%
\hfill%
{\usebeamerfont{institute in head/foot}\usebeamercolor[fg]{institute in head/foot}\insertshortinstitute}%
\end{beamercolorbox}%
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
{\usebeamerfont{title in head/foot}\insertshorttitle}%
\end{beamercolorbox}%
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line foot}
\end{beamercolorbox}
}
\author{Du}
\title{Endlich fertig?}
\date{\today}

\begin{document}
\frame[plain]{\titlepage}

%%---------------------------------------------------------------------------
%%---------------------------------------------------------------------------
\section{preamble}
\begin{frame}
The common methods of orientation of unknown subsurfaced reference points are based of relative techniques, e.g.
\end{frame}
\section{preamble}
\begin{frame}
The common methods of orientation of unknown subsurfaced reference points are based of relative techniques, e.g.
\end{frame}
%%---------------------------------------------------------------------------
%%---------------------------------------------------------------------------
\end{document}

Gruß
Marco

Barny.G
17-02-2009, 21:49
Hallo Marco,

erst heute komme ich dazu Dein posting zu beantworten. Hat wunderbar funktioniert! Auch das copy/paste Verfahren ;)

Vielen Dank!

Stephan