chapterprecis 与章节标题重叠

chapterprecis 与章节标题重叠

我正在使用 pedersen 的 memoir 和 chapterstyle 撰写论文。但是,chapterprecis 与章节标题重叠。这里我附上了一个可以重现该问题的最小代码。希望有人能帮助我解决这个问题。

\documentclass[12pt]{memoir}
\usepackage{lipsum}
\usepackage{amssymb}
\usepackage{pgfplots}
\usepackage{geometry}
\usetikzlibrary{shapes,arrows,arrows.meta}
\pagestyle{companion}

\definecolor{ared}{rgb}{.647,.129,.149}
\renewcommand\colorchapnum{\color{ared}}
\renewcommand\colorchaptitle{\color{ared}}
\chapterstyle{pedersen}

\begin{document}
\chapter{This is a test.}
\chapterprecis{
This is a test to show that the synopsis is overlapping with the chapter title.}

\lipsum[1-3]

\end{document}

在此处输入图片描述

答案1

尝试添加

\setlength\prechapterprecisshift{0pt}

到序言。章节摘要对章节样式做出了一些假设,但这些假设并不总是有用的。在非文章选项文档中,此处的默认值对应于的-2\baselineskip正常值。但这里只有。\afterchapskip40pt\afterchapskip10pt

相关内容