我在文件中使用\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}