I am writing my thesis using a university provided Latex template. I am getting a super weird first page at the very beginning of the 100 Page document. It seems to be a compressed form of the "symbols" chapter without new lines. I have not figured out why this page is created. Can you guys tell me where I have to look for the problem?
Here are my usepackages:
\usepackage[nenglish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage[onehalfspacing]{setspace}
\usepackage{microtype}
\usepackage{csquotes} %\enquote{text}FuerAnfuehrungszeichen
%\usepackage{subfigure}
\usepackage{acronym}
\usepackage[section]{placeins}
\usepackage{tabularx}
\usepackage{amssymb}
\usepackage{amstext}
\usepackage{amsfonts}
\usepackage{mathrsfs}
\usepackage{booktabs}
\usepackage{verbatim}
\usepackage{multirow}
\usepackage[intlimits]{amsmath}
\usepackage{booktabs}
\newcommand*\diff{\mathop{}\!\mathrm{d}}
\usepackage[headsepline,plainheadsepline]{scrlayer-scrpage} %[plainheadsepline]
\usepackage{listings}
\usepackage{listingsutf8}
\usepackage[squaren]{siunitx}
\usepackage{siunitx}
\usepackage{listofsymbols}
\lstset{breaklines=true,frame=single, language=Python, numbers=left,title=\lstname, basicstyle=\tiny }
\usepackage{subfig}
\usepackage{caption}
\usepackage{float}
%\usepackage{subcaption}
And my settings:
\bibliographystyle{unsrt}
\SIunits[derived]
\pagestyle{scrheadings}
\clearscrheadings
\ihead[\headmark] {\headmark}
\ohead[\pagemark] {\pagemark}
%renewcommand*{\chapterpagestyle}{\ihead[\headmark]{\headmark}, \ohead[\pagemark]{\pagemark}}
\cfoot[] {}
\automark[section]{chapter}
%\automark[subsection]{section}
%\chead[]{}

nenglishis not ababeloption. – egreg Mar 03 '23 at 16:07listofsymbolspackage macros. – Dai Bowen Mar 03 '23 at 16:18\SIunits. Because this is undefined, the optional parameter[derived]is just printed out and that's what's creating the page. When you get unexpected output, the first thing to do is fix all the errors that are being reported. – Dan MacKinnon Mar 03 '23 at 16:22! Package babel Error: Unknown option 'nenglish'. Either you misspelled itand! LaTeX Error: Unknown option 'squaren' for package siunitx.– David Carlisle Mar 03 '23 at 16:42