带有预定义模板的论文标题

带有预定义模板的论文标题

我正在用预定义模板写论文。但是,页眉与要求相冲突。以下是 thesis.cls 文件中页眉和页脚的定义代码。

\def\ps@thesis@headings{%
    \def\@oddhead{\vbox to\headheight{%
        \hb@xt@\textwidth{ \hfill\wuhao\song\leftmark\hfill}
        \vskip2pt\hbox{\vrule width\textwidth height0.4pt depth0pt}}}
    \def\@evenhead{\vbox to\headheight{%
        \hb@xt@\textwidth{\wuhao\song
        \hfill\leftmark\hfill }
        \vskip2pt\hbox{\vrule width\textwidth height0.4pt depth0pt}}}
    \def\@oddfoot{\hfil\wuhao\thepage\hfil}
    \let\@evenfoot=\@oddfoot}

上述代码生成单面标题,而我的大学要求双面标题。我该怎么做才能强制 cls 切换到正确的样式?

相关内容