未定義的控制序列,但相同的 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}}}

相關內容