删除 amsppt 中的日期

删除 amsppt 中的日期

当序言中使用以下内容时,如何删除“日期”? 任何帮助都值得赞赏。

\input amstex
\documentstyle{amsppt}
\magnification=\magstep1                        %<====
\hsize6.5truein\vsize8.9truein                  %<====
\NoRunningHeads
\loadeusm
\usepackage{titling}

答案1

我已经有近二十年没有编写过 AMS-TeX 文档了,但我可以说下面的代码由纯 TeX 编译…

\input amstex
\documentstyle{amsppt}
\magnification=\magstep1
\hsize6.5truein\vsize8.9truein
\NoRunningHeads
\loadeusm
\topmatter
\title The Gnus\endtitle
\author Arthur Uther Thor\endauthor
% \date July~17, 2016\enddate
\endtopmatter
\document
Gnus are big.
\enddocument

…并且确实如此不是只要注释掉相关行就可以显示日期。

添加:无论如何,我建议你改用 LaTeX + AMS 课程之一,例如执行如下amsart操作:

\documentclass[12pt,letterpaper]{amsart}
\usepackage[T1]{fontenc} % not actually necessary, but I use it by habit
% ... more packages as needed

\title{The Gnus}
\author{A.~U.~Thor}
% \date{\today} % uncomment to see where the date would wind up

\pagestyle{plain} % instead of \NoRunningHeads

% ... More declarations ...

\begin{document}

\maketitle

Gnus are big.

\end{document}

这应该产生与第一个示例代码基本相同的输出。

相关内容