Presentations and PostersVersion changes and keyval errors

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
crisurdiales
Posts: 4
Joined: Wed Nov 14, 2018 4:49 pm

Version changes and keyval errors

Post by crisurdiales »

Hi,

I have a Beamer presentation back from 2010 I wanted to reuse and modify. Back then, it compiled perfectly, but I've been trying to recompile it now (with no changes) and it gives this error everytime.

"beamer "package keyval error" currentsubsection* undefined"

I've been looking around and I've found that some users solved it with beamer colors (\setbeamercolor{normal text}{fg=teal}) but this solution is not working for me (indeed, I had my own colors defined back them, too).

I can provide the header (although it is large), but the thing is that it worked fine back in the days. Every package in my Latex distribution has been updated, so it is probably a back compatibility issue?

Anyone has found this problem as well?

Thanks for any help you may provide,

C-

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

Stefan Kottwitz
Site Admin
Posts: 10330
Joined: Mon Mar 10, 2008 9:44 pm

Version changes and keyval errors

Post by Stefan Kottwitz »

You can post the code here. If it's big, you can post it as attachment. The Attachments link is right below the text edit field, when writing a post. If it's still readable, you can post it right inline in a post. There's a Code button at the top for writing, it does syntax highlighting and online compiler connection.

Actually there's no need for posting a huge preamble. You can take a copy and reduce it, step by step, as long as the error keeps appearing when testing. This pretty much isolates the issue, and it gets more readable here for checking.

Stefan
LaTeX.org admin
crisurdiales
Posts: 4
Joined: Wed Nov 14, 2018 4:49 pm

Version changes and keyval errors

Post by crisurdiales »

Thanks for the tip. I'm attaching the header here. All the slides follow the same format, so one should be enough for reference. I'm using Versión 3.99 (3.99) in MacOS 10.9.5 (I don't think it's relevant except last version of TexLive is not compatible, but just in case)

Code: Select all

Code, edit and compile here:
%\documentclass{beamer}
\documentclass[xcolor=pdftex,svgnames,dvipsnames,table]{beamer}
%\usepackage{color}
%\definecolor{smooth}{rgb}{1,0,0}
%\definecolor{safe}{rgb}{0,0,1}
%\definecolor{direct}{rgb}{0,1,0}
\usepackage[final]{movie15}
%\setbeamercolor{alerted_text}{fg=blue}
% El paquete movie15 reemplaza a multimedia y provee los comandos movie e hyperlinkmovie
% pero si lo quitamos, no aparecen los videos.... a no ser qu pongamos final en opciones de movie15
%\usepackage{multimedia}
\usepackage{hyperref} %se recomienda (a veces) que se carge antes que el paquete geometry
\usepackage{geometry}
%\setbeamercolor{normal text}{fg=teal}
\useoutertheme{split}
\mode<presentation>
{
\usetheme{Darmstadt}
\setbeamercovered{transparent}
\setbeamertemplate{footline}[split]
\usefonttheme{serif}
}
%\usepackage{colortbl}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc} % mfc para permitir introducir comando /DH
\usepackage{times}
%\usepackage[T1]{fontenc}
% Or whatever. Note that the encoding and the font should match. If T1
% does not look nice, try deleting the line with the fontenc.
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
User avatar
Stefan Kottwitz
Site Admin
Posts: 10330
Joined: Mon Mar 10, 2008 9:44 pm

Version changes and keyval errors

Post by Stefan Kottwitz »

It's caused by this line:

\tableofcontents[currentsection,currentsubsection*]

There's no problem with \tableofcontents[currentsection].

Stefan
LaTeX.org admin
crisurdiales
Posts: 4
Joined: Wed Nov 14, 2018 4:49 pm

Version changes and keyval errors

Post by crisurdiales »

Thanks, I'm going to try it right now
Post Reply