未定義の制御シーケンスですが、cls \maketitle は同じです

未定義の制御シーケンスですが、cls \maketitle は同じです

論文のタイトルを作成するときに問題が発生しています。.cls ファイルで作成されたコマンドが .tex ファイルで使用している宣言と異なるためだとわかっていますが、問題が見つかりません。.tex の部分は次のとおりです。

\title{\Large{title}}
\crest{\includegraphics[width=40mm]{Figures/...}}
\author{My Name}
\collegeordept{Dept}
\university{Uni Name}

\supervisor{Supervisor name}
% DECLARATION
% Use the following command to change the declaration text:
%\renewcommand{\submittedtext}{INSERT NEW TEXT HERE}
\degree{Master's degree}
\degreedate{Date}

\begin{document}

% A page with the abstract and running title and author etc may be
% required to be handed in separately. If this is not so, comment
% the following 3 lines:
% \begin{abstractseparate}
%   \input{Abstract/abstract}
% \end{abstractseparate}
\begin{spacing}{1}
\maketitle
\end{spacing}

.cls 部分:

% TITLE PAGE
\renewcommand{\maketitle}{%
\pagenumbering{roman} % Sasa Tomic
\setcounter{page}{0}  % Sasa Tomic
\begin{alwayssingle}
  \renewcommand{\footnotesize}{\small}
  \renewcommand{\footnoterule}{\relax}
  \thispagestyle{empty}
%  \null\vfill
\begin{center}
  { \Huge {\bfseries {\@title}} \par}
  {\large \vspace*{30mm} {{\@crest} \par} \vspace*{20mm}}
  {{\Large \@author} \par}
  {\large \vspace*{1ex}
  {{\@collegeordept} \par}
  \vspace*{1ex}
  {{\@university} \par}
  \vspace*{20mm}
  {{\submittedtext} \par}
  \vspace*{1ex}
  {\it {\@degree} \par}
  \vspace*{2ex}
  {\@degreedate}}
 \end{center}
%     \null\vfill
 \end{alwayssingle}
}

どこが間違っているのでしょうか?皆さんありがとうございます。

編集:エラーは

\maketitle ... } \vspace *{20mm} {{\submittedtext 
                                              } \par } \vspace *{1ex} 
{\...
l.109 \maketitle
            
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

エラーを修正するにはどうすればいいですか?

答え1

定義.cls

\newcommand{\submittedtextt}{{\textit{Supervisor}}}

しかし、\maketitle用途は

\submittedtext

.cls定義するには修正する必要があります

\newcommand{\submittedtext}{{\textit{Supervisor}}}

関連情報