如何在部分页面上包含摘要?

如何在部分页面上包含摘要?

我希望第一部分和摘要在同一页上(所以我想用不同的摘要制作不同的部分,每个部分一个摘要)

\documentclass[a4paper,twoside,11pt,final]{report}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}


\begin{document}
\tableofcontents

\part{P1}
\begin{abstract}
qsdpoqsidpoidpoqisdpoiqsdpo
\end{abstract}

\chapter{First}
\chapter{Second}

\end{document}

所以我尝试使用它(用于样式),但对于章节来说,它开始了一个新页面,并且目录中的样式不是最好的(与章节相同级别)

\usepackage{titlesec} 
\usepackage{titletoc}

\titleformat{\part}[display]
      {\bfseries\Large}
      {\Huge{\filright\MakeUppercase{Partie} \thepart}}
      {1ex}
      {\titlerule\vspace{1ex}\filleft}
      [\vspace{1ex}\titlerule]

感谢 campa,现在我可以这样做:

\documentclass[a4paper,12pt,twoside,final]{scrreprt}

\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}


\begin{document}
\tableofcontents
\setpartpreamble{
My context .}

\part{P1}


\chapter{First}
\chapter{Second}

\end{document}

它运行得很好,但另一个问题是,如何在报告中保留相同的部分、章节、部分字体?

答案1

scrreprtKOMA 包中的类提供了一个宏\setpartpreamble,它允许你将摘要放在部分标题下,如下所示

\setpartpreamble{%
\begin{abstract}
Some text.
\end{abstract}}
\part{Whatever}

此外,如果您给出类选项,abstract=true那么摘要前面将会有单词“摘要”(或任何内容\abstractname)。

如果你想保留标准类的衬线字体,你可以

\addtokomafont{disposition}{\rmfamily}

在序言中。该元素disposition代表

\part所有章节单元标题,即至 \subparagraph和的论点\minisec,包括摘要的标题。

(摘自 KOMA 文档。)

相关内容