如何使用Latex删除pdf顶部的时间

时间:2017-07-24 21:36:29

标签: pdf latex

enter image description here

嗨,这是我第一次使用LATEX,任何人都可以帮助我如何删除pdf顶部的“2017年7月24日星期一10:19的草稿”。提前谢谢

1 个答案:

答案 0 :(得分:0)

根据建议here,请在\date{}之前使用\maketitle。我引用了上面链接中的最小工作示例:

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
\title{Title}
\author{Author}
\date{}
\maketitle
test
\end{document}