Document Classesbeamer | Problem with new Dimension Register

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

beamer | Problem with new Dimension Register

Post by coachbennett1981 »

Good morning, well, at least it is morning the District of Columbia. I keep getting this error in my .tex files using beamer. These files were created in 2009 (MikeTeX) I have since upgraded and I get the following error when I try to compile my file. I can still get my pdf output, but I would like to know why the error exists.

Code: Select all


l.1702 \newdimen\chart@ColorStep

I am attaching the entire file..
Last edited by coachbennett1981 on Tue Feb 28, 2012 6:56 pm, 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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

beamer | Problem with new Dimension Register

Post by localghost »

coachbennett1981 wrote:[…] I am attaching the entire file..
Seems that something has gone wrong.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

beamer | Problem with new Dimension Register

Post by Stefan Kottwitz »

Hi,

as Thorsten mentioned, you probably forgot the attachment. Just an addition, the error message is incomplete, the actual error is missing, just the code line can be seen where it occured.

I guess the error could be "No room for a new dimen", as the problem occured with \newdimen. You could check that. It's possible that it would not be a serious error, but TeX is out of resources because of too many packages. In that case you could extend the resources by using etex capabilities.

Just add

Code: Select all

\usepackage{etex}
to your preamble, preferably at the beginning, before the other packages, so it could have effect before the error occurs.

If the guess would be correct, it's luck ;-) then next time just show more information such as code and error messages or .log file. If not, we will see and check the following additional information.

Stefan
LaTeX.org admin
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: beamer | Problem with new Dimension Register

Post by coachbennett1981 »

Sorry I did hit the attach file after the upload too. I must have hit post before it was done. @Stefan, thanks, the \usepackage{etex} worked.
Post Reply