Document ClassesBeamer: undefined sequence errors and blank first page

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
geo
Posts: 3
Joined: Fri Jun 18, 2010 11:26 pm

Beamer: undefined sequence errors and blank first page

Post by geo »

hello,
with the following minimal example, i cannot produce a PDF without at least two undefined control sequence errors and a "Missing \begin{document}" error. also, the first output page is blank and very large in comparison to the title slide.

Code: Select all

\documentclass{beamer}
\title{Test}
\begin{document}
\maketitle
\end{document}
this is pdfTeX, 3.1415926-1.40.10 (TeX Live 2009) on OSX (10.6.4).

please find my .log attached.
and thank you for any suggestions.
Attachments
test.log
(38.86 KiB) Downloaded 268 times
Last edited by geo on Sat Jun 19, 2010 2:19 am, edited 1 time in total.

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

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Beamer: undefined sequence errors and blank first page

Post by josephwright »

Did you read the rest of the log? For example you have

Code: Select all

LaTeX Warning: You have requested, on input line 3547, version
               `2009/07/21' of package kvoptions,
               but only version
               `2007/10/18 v3.0 Keyval support for LaTeX options (HO)'
               is available.
just before

Code: Select all

! Undefined control sequence.
l.3549 \DeclareLocalOptions
                           {%
This seems like a pretty obvious issue: you've got a version of beamer much newer than the rest of you TeX installation. Did you just download beamer on its own?
Joseph Wright
geo
Posts: 3
Joined: Fri Jun 18, 2010 11:26 pm

Re: Beamer: undefined sequence errors and blank first page

Post by geo »

hi Joseph,

thank you for your quick reply. delving into log files is new for me. i did indeed reinstall the beamer package through the TeXLive Utility.

would you get me started on how i would return to a previous version of beamer or newer version of TeX?

thank you again.
geo
Posts: 3
Joined: Fri Jun 18, 2010 11:26 pm

Beamer: undefined sequence errors and blank first page

Post by geo »

josephwright wrote:Did you read the rest of the log? For example you have

Code: Select all

LaTeX Warning: You have requested, on input line 3547, version
               `2009/07/21' of package kvoptions,
               but only version
               `2007/10/18 v3.0 Keyval support for LaTeX options (HO)'
               is available.
just before

Code: Select all

! Undefined control sequence.
l.3549 \DeclareLocalOptions
                           {%
This seems like a pretty obvious issue: you've got a version of beamer much newer than the rest of you TeX installation. Did you just download beamer on its own?
i had multiple versions of oberdiek's kvoptions installed. removing the non texmf-local one resolved my issue.
Post Reply