我正在为我的学士论文写摘要。因此我使用 LaTeX。现在我有了文档的结构,但它总是在页面上打印页码。它只有一页,页面上应该有任何东西,而不是我的标题(摘要)和摘要文本。
该命令\pagestyle{empty}
应该删除所有页眉和页脚,但它不起作用
这是我的脚本:
\documentclass[a4paper,12pt,headsepline,smallheadings]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[applemac]{inputenc}
\typearea{12}
\pagestyle{empty}
\title{Abstract}
\author{}
\date{}
\begin{document}
\maketitle
...TEXT...
\end{document}
答案1
\maketitle
将页面样式设置为。可以通过以下方式\titlepagestyle
将其重新定义为页面样式empty
\renewcommand*{\titlepagestyle}{empty}
完整示例:
\documentclass[a4paper,12pt,headsepline,smallheadings]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[applemac]{inputenc}
\typearea{12}
\renewcommand*{\titlepagestyle}{empty}
\title{Abstract}
\author{}
\date{}
\begin{document}
\maketitle
...TEXT...
\end{document}
答案2
另一种方法是:插入
\pagestyle{empty}
,最终,\thispagestyle{empty}
后 \maketitle
。