GeneralBeamer: Undefined control sequence \beamer@frameslide ...

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
meanna007
Posts: 5
Joined: Tue May 04, 2010 6:24 am

Beamer: Undefined control sequence \beamer@frameslide ...

Post by meanna007 »

There is only one problem i am not able to sort out in Beamer presentation. If I want to make a 2 page presentation, I am getting a 4 page where page 1& 3 are unwanted pages (showing only page number ). Page 2 and 4 are genuine. My question is why i am getting those extra pages containing page number.

Code: Select all

\documentclass[hyperref={pdfpagelabels=false}]{beamer}

\mode<presentation>
  \usetheme{Berlin}
  \setbeamercovered{transparent}

\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{times}
\usepackage[T1]{fontenc}
\usepackage{xcolor}


\subject{Talks}


%\beamerdefaultoverlayspecification{<+->}
\title{Hadronization of a Fourth-Generation Top Quark
 and measurement of its Lifetime}
 
\author[]{sss }
\date{\today}

\begin{document}

\frame{\titlepage}

\begin{frame}{Plan of My Talk}
\begin{itemize}
\item Motivation for an extra generation of quark.
\item Electroweak constraint on fourth generation.
\item Lifetime and branching ratios of $t'$ quark.
\item Measurement of \textcolor{violet}{$\Gamma_{t'}$} and \textcolor{violet}{$V_{t'b'}$}.

\end{itemize}
\end{frame}
\end{document}
There are only two errors, probably denoting the two extra page error. The error looks like below:

Code: Select all

! Undefined control sequence.
\beamer@frameslide ...duration=}\thispdfpagelabel 
                                                  {\insertframenumber } \xde...
l.27 \frame{\titlepage}
                       
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.


Underfull \vbox (badness 10000) has occurred while \output is active []

 [1
I am using Windows XP, Texnic Center, MikTex 2.8. Also genuine pgf, xcolor, hyperref (all upto date). Thanks for any kind of help.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Beamer: Undefined control sequence \beamer@frameslide ...

Post by frabjous »

The problem goes away for me if I remove:

Code: Select all

hyperref={pdfpagelabels=false}
from the options to the documentclass. Do you know you need that? I'm not sure that option is compatible with beamer.
meanna007
Posts: 5
Joined: Tue May 04, 2010 6:24 am

Re: Beamer: Undefined control sequence \beamer@frameslide ..

Post by meanna007 »

well, if you dont use , then you will get one extra warning. No reprise from my mail problem. Thanks anyway
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Re: Beamer: Undefined control sequence \beamer@frameslide ..

Post by Stefan Kottwitz »

I tested the example and got two pages, without error. Perhaps post the complete log file as attachment here. The additional information inside might help.

Stefan
LaTeX.org admin
meanna007
Posts: 5
Joined: Tue May 04, 2010 6:24 am

Beamer: Undefined control sequence \beamer@frameslide ...

Post by meanna007 »

HI, Please find the attachment for log file as well as pdf file i have generated.
Thanks,
Attachments
test1.pdf
pdf output that i have generated
(55.25 KiB) Downloaded 420 times
test1.log
complete log file
(38.11 KiB) Downloaded 463 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Beamer: Undefined control sequence \beamer@frameslide ...

Post by Stefan Kottwitz »

Hi,

it may be a bug in the beamer version you are using. You could update your beamer package.

There's a workaround: defining the macro which is said to be unknown:

Code: Select all

\providecommand{\thispdfpagelabel}[1]{}
This and further information can be found here: Beamer - undefined control sequence.

Stefan
LaTeX.org admin
meanna007
Posts: 5
Joined: Tue May 04, 2010 6:24 am

Re: Beamer: Undefined control sequence \beamer@frameslide ..

Post by meanna007 »

Thanks :)
Post Reply