\chapter 和 \section 前的题词

\chapter 和 \section 前的题词

我已阅读了题词文档,但遗憾的是我不知道如何将我的引述放在 \chapter 和 \section 条目之前(同一页)。

有人可以给我一点提示吗?

    \documentclass[a4paper,
    bibliography=totoc,
    toc=listof,
    captions=tableheading,
    headings=small,
    listof=entryprefix
    ]
    {scrbook}


\usepackage[utf8]{inputenc}                                                     
\usepackage{textcomp}
\usepackage[T1]{fontenc}                                                        
\usepackage[english]{babel} 

\usepackage[language=autobib,
    backend=biber,
    citetracker=true,
    autolang=other,
    style=authoryear-comp
    ]{biblatex}


\usepackage{epigraph}
    \setlength{\beforeepigraphskip}{1.0\baselineskip}
    %\setlength{\epigraphrule}{0pt}
    %\setlength{\epigraphwidth}{.5\textwidth}
    \setlength{\afterepigraphskip}{.25\baselineskip}
    \renewcommand{\textflush}{flushepinormal}


\begin{document}
\part{PART}

\epigraph{Poor cultural foundations were a significant driver of the 2008–2009 financial crisis(in common with many past crises). Behaviors that do not meet banks’ desired values and conduct continue to be a problem.}{Group of Thirty (2015), p. 18}

\chapter{CHAPTER}
\section{SECTION}

Text.

\end{document}

答案1

您可能想要增加章节标题前的空间。

\documentclass[
  a4paper,
  bibliography=totoc,
  toc=listof,
  captions=tableheading,
  headings=small,
  listof=entryprefix,
]{scrbook}


\usepackage[utf8]{inputenc}                                                     
\usepackage{textcomp}
\usepackage[T1]{fontenc}                                                        
\usepackage[english]{babel} 

\usepackage[
  language=autobib,
  backend=biber,
  citetracker=true,
  autolang=other,
  style=authoryear-comp,
]{biblatex}


\usepackage{epigraph}

%\setlength{\beforeepigraphskip}{1.0\baselineskip}
%\setlength{\epigraphrule}{0pt}
%\setlength{\epigraphwidth}{.5\textwidth}
%\setlength{\afterepigraphskip}{.25\baselineskip}
\renewcommand{\textflush}{flushepinormal}


\begin{document}
\part{PART}

\chapter{CHAPTER}

\epigraphhead[20]{%
  \epigraph{Poor cultural foundations were a significant 
    driver of the 2008–2009 financial crisis(in common
    with many past crises). Behaviors that do not meet
    banks’ desired values and conduct continue to be a
    problem.}{Group of Thirty (2015), p. 18}}

\section{SECTION}

Text.

\end{document}

该参数[20]是题词底部与文本块上边缘的距离。

在此处输入图片描述

相关内容