tudscr
tudscr copied to clipboard
\confirmation throws errors if using a typed thesis: \masterthesisname not defined for language 'english'
The error arises when inserting a confirmation in a thesis that is marked as a special type (master, bachelor, student, diploma, diss, etc.) using the \thesis{<type>}
command.
Here is a MWE:
\documentclass[english]{tudscrbook}
\usepackage{babel}
\thesis{master}
\date{\today}
\begin{document}
\begin{declarations}
\confirmation
\end{declarations}
\end{document}
My Environment:
pdflatex: pdfTeX 3.14159265-2.6-1.40.20 (TeX Live 2019) tudscr package version: 2.06f
Using \thesis{master}
after \begin{document}
should work. I will try to find out, why this occurs.
\documentclass[english]{tudscrbook}
\usepackage{babel}
\begin{document}
\thesis{master}
\date{\today}
\begin{declarations}
\confirmation
\end{declarations}
\end{document}