\date 命令 - 将“日期:”替换为其他内容

\date 命令 - 将“日期:”替换为其他内容

我在文件中使用\documentclass{amsart}。在写入tex之前,然后我得到结果“日期:2012 年 10 月 22 日。”。\maketitle\date{22th october 2012}

使用\date,我希望它打印“伦敦,2012 年 10 月 22 日”。我该怎么做?

我 尝试 过\renewcommand{\date}, 但 也许 正确 的 做法 是 改变\the@date.

答案1

您可以重新定义\datename以抑制字符串“日期:”

\documentclass{amsart}

\renewcommand{\datename}{}

\title{The Title}
\author{The Author}
\date{London, 22th october 2012}

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

相关内容