有没有一种有效的方法可以在论文标题页中添加诸如“非常初步”之类的提及?我尝试将其添加到命令中,\date{}
但这看起来更像是一个技巧而不是其他东西。
\documentclass[a4paper,12pt]{article}
\begin{document}
\title{Analysis\thanks{The author thanks http://tex.stackexchange.com/ for its valuable help.}}
\author{Me\thanks{Here}}
\date{Very Preliminary \\ \today}
\maketitle
\begin{abstract}
Yes.
\end{abstract}
\end{document}
谢谢。
答案1
这是一个非常小的包,preliminary.sty
如果处于活动状态,它将添加符号draft
,否则不会添加符号。这取决于titling.sty
。
\begin{filecontents}{preliminary.sty}
\ProvidesPackage{preliminary}
\DeclareOption{draft}{%
\AtBeginDocument{%
\renewcommand\maketitlehookc{%
\begin{center}Very Preliminary\end{center}}}}
\ProcessOptions
\RequirePackage{titling}
\endinput
\end{filecontents}
\documentclass[a4paper,12pt,draft]{article}
\usepackage{preliminary}
\begin{document}
\title{Analysis\thanks{The author thanks http://tex.stackexchange.com/ for its valuable help.}}
\author{Me\thanks{Here}}
\maketitle
\begin{abstract}
Yes.
\end{abstract}
\end{document}
draft
从传递给的选项中删除article
: