如何安装“sw20jart.sty”?

如何安装“sw20jart.sty”?

我搜索了互联网并找到了以下代码:

%sw20jart {Article: JEEP (a general purpose vehicle)}{12pt}{article}{empty}
%Copyright (C) 1994-95 TCI Software Research
\typeout{TCI Document Style `sw20jart' <1 July 1994>.}
\typeout{NOTICE:  This macro file is NOT proprietary and may be 
freely copied and distributed.}
%
\input{jeep.sty}
\input thmsupp.tex %TCI theorem option support
\cfoot{\thepage}%
\tighttoc%
\numberbysection%
\thispagestyle{empty}%
%
% The following is included to suppress page numbers on the first page
% when a title is used.
\def\maketitle{\par
 \begingroup
   \def\thefootnote{\fnsymbol{footnote}}%
   \def\@makefnmark{\hbox
       to\z@{$\m@th^{\@thefnmark}$\hss}}%
   \if@twocolumn
     \twocolumn[\@maketitle]%
     \else \newpage
     \global\@topnum\z@
%     \@maketitle \fi\thispagestyle{plain}\@thanks  % Page number on first page
     \@maketitle \fi\thispagestyle{empty}\@thanks  % No page numbers
 \endgroup
 \setcounter{footnote}{0}%
 \let\maketitle\relax
 \let\@maketitle\relax
 \gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax}

这是我要找的软件包吗?
如果是,我该如何安装它?

答案1

属于sw20jart.sty科学工作场所(SWP)据我所知,它只是对标准命令进行了一些(糟糕的)重新定义。它还会加载jeep.sty这是一个 LaTeX 2.09 样式的文件,并且有类似的错误重新定义。

文件thmsupp.sty什么都不做:它只是定义了由于文件加载方式而未使用的包选项。

可能加载的文件tcilatex.tex什么也不做:它是 SWP 的兼容层,只会影响前端的屏幕输出。

因此,你可以安全地注释掉两者

\usepackage{sw20jart}

\input{tcilatex}

也许输出结果会与原始结果不同,但我猜重要的是文件能够被无错误地处理。

相关内容