考虑以下代码:
\documentclass[titlepage,10pt]{book}
\usepackage[showframe,margin=.3in,paperwidth=4in,paperheight=6in]{geometry}
\textheight=5.25in
\usepackage[frame,noinfo,center]{crop}
\usepackage{microtype,scalefnt}
\title{TITLE\\[-4pt] {\scalefont{0.45}{{\textit{OF THE}}}}\\[3pt] BOOK}
%\author{The Author}
\begin{document}
\thispagestyle{empty}
\maketitle
\end{document}
生成页面
问题:如何才能阻止\maketitle
显示日期?
谢谢。
答案1
您可以将默认日期替换为空日期:
\documentclass[titlepage,10pt]{book}
\usepackage[showframe,margin=.3in,paperwidth=4in,paperheight=6in]{geometry}
\textheight=5.25in
\usepackage[frame,noinfo,center]{crop}
\usepackage{microtype,scalefnt}
\title{TITLE\\[-4pt] {\scalefont{0.45}{{\textit{OF THE}}}}\\[3pt] BOOK}
%\author{The Author}
\date{}
\begin{document}
\thispagestyle{empty}
\maketitle
\end{document}