I have written my doctoral thesis with LaTeX using the
scrreprt
class from KOMA-Script. To handle math I have used the packages amsmath, amssymb (amsfonts), amsthm and mathrsfs.Everything compiled well using the MacTeX 2012 distribution, and equations were numbered according to their section/subsection and chapter, e.g. (1.2.3) stands for equation 3 in chapter one, section 2. Since I moved to MacTeX 2013 on a different computer (still a Mac), instead of the over mentioned numbering style, I obtain a global sequential numbering. That means, I end up with very large numbering for equations, e.g. (530). I am very confused about this issue since the code has been left untouched!
I have tried to use
\numberwithin{equation}{section}
, but this make things even worst, since now numbering starts over in every subsection in a local sequential way: (1), (2) etc.As a general information, I am also using the following packages:
Code: Select all
\usepackage{arsclassica}
\usepackage[
eulerchapternumbers,% % chapter numbers in Euler
subfig,% % address compatibility with subfig
beramono,% % Bera Mono
eulermath,% % math font set to AMS Euler
pdfspacing% % enhance line fitting
]{classicthesis}
Thanks!