I am using latex to write my thesis and I am using a template with a modified class.
Since last Wednesday, the options that I declare at the top of the document in the \documentclass command are not recognized.
The class is coded to accept in input several options, such as font, margins, paper size, etc. However, it seems that no option is recognized anymore.
For example, if I define
\documentclass[times]{ThesisClass}
I receive a warning that says that no font was specified.
The suspicious thing is that if I recompile the same files on a different laptop, everything works fine.
I am using Texlive2020 and TexMaker as editor on Windows 10 I already tried to update everything, wipe and re-install, but I still get the same problem.
I have tried to look online for a possible solution, but I can't find it. Could someone please help me?
Is there a way to fix this \documentclass issue?
Thanks in advance for your help!
Main code example
\documentclass[12pt]{Classes/ThesisClass}
\usepackage{blindtext}
\begin{document}
\blindtext
\end{document}
ThesisClass
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{Classes/ThesisClass}
\DeclareOption{10pt}{\PassOptionsToClass{11pt}{book}}%
\DeclareOption{11pt}{\PassOptionsToClass{11pt}{book}}%
\DeclareOption{12pt}{\PassOptionsToClass{12pt}{book}}%
\DeclareOption{twoside}{\PassOptionsToClass{\CurrentOption}{book}}%
% Process options and load class
\ProcessOptions\relax
\LoadClass{book}
ThesisClassand this is not part of a standard tex system. If you can reproduce your problem with a standard class and standard packages, show a small, but complete example that can be used for tests along with the log-file of the example. – Ulrike Fischer Nov 15 '20 at 16:36\documentclass[times]{ThesisClass}. If you have a problem it is important that you show real code, not something you think is equivalent. – Ulrike Fischer Nov 16 '20 at 08:41