Presentations and Posters ⇒ Version changes and keyval errors
-
- Posts: 4
- Joined: Wed Nov 14, 2018 4:49 pm
Version changes and keyval errors
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-
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
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
-
- Posts: 4
- Joined: Wed Nov 14, 2018 4:49 pm
Version changes and keyval errors
Code: Select all
%\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.
- Stefan Kottwitz
- Site Admin
- Posts: 10330
- Joined: Mon Mar 10, 2008 9:44 pm
Version changes and keyval errors
\tableofcontents[currentsection,currentsubsection*]
There's no problem with
\tableofcontents[currentsection]
.Stefan
-
- Posts: 4
- Joined: Wed Nov 14, 2018 4:49 pm