调整.cls latex 类文档

调整.cls latex 类文档

我正在尝试编辑这个特定的 .cls 文件

我只想做与首页相关的更改,如图所示。但是 cls 文件是用复杂的语言编写的,我不知道该删除什么,但又不能运行它而不出现错误或坏框。

enter image description here

文档链接.cls

使用此类“www.textuploader.com/d1b07”链接到文本文档,图片来自此处

如果我还想编辑“量化金融,第 00 卷……”我该怎么做?

答案1

您无需更改类文件即可执行此操作(通常您不应更改类文件),但您需要了解一些 TeX 语言知识才能进行更改。以下是一些您可以添加到文档中的代码,用于进行更改,而不是更改类。

\documentclass{rQUF2e}
\usepackage{lipsum} % to provide dummy text
\makeatletter
\renewcommand{\draftnote}{{\itshape \@jname} Vol. \@jvol, No. \@jnum, \ifx\@jmonth\empty\else\@jmonth\ \fi\@jyear,  \thepage--\@endpage}
\renewcommand{\ps@plain}{%
     \let\@mkboth\@gobbletwo
     \let\@oddfoot\@evenfoot
}
\makeatother

\title{A title}
\author{An author}
\affil{An affiliation}

\begin{document}
\maketitle
\lipsum
\end{document}

(此行是屏幕截图的产物。)

enter image description here

相关内容