我想在文档的摘要后面添加引文页。没有编号,没有标题,只有简单的引文和来源。怎么做?
我的主文件(此处文件名为“slogan”):
\documentclass[
12pt,
a4paper,
bibtotoc,
cleardoubleempty,
idxtotoc,
ngerman,
openright
final,
listof=nochaptergap,
]{scrbook}
\input{src/settings}
\begin{document}
\setcounter{secnumdepth}{3}
\include{src/title}
\cleardoubleemptypage
\frontmatter
% Abstract
\include{src/abstract}
\cleardoubleemptypage
\include{src/slogan}
\cleardoubleemptypage
\tableofcontents
\addcontentsline{toc}{chapter}{Table of contents}
\cleardoubleemptypage
% ...
目前的口号文件是:
\vspace*{\fill}
\begin{center}
\begin{quote}
% quote
\end{quote}
\end{center}
\vfill
答案1
为了获得你想要的东西,你只需添加一行
\thispagestyle{empty}
在。。。之初slogan.tex
。
页面样式empty
不会向页面添加页眉和页脚。该命令\thispagestyle
确保更改将在发出该命令的页面本地进行。