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