注意到一种在memoir
班级文档中为每一章分配作者姓名和摘要的方法(见在回忆录章节标题下添加作者和摘要),我遇到了一点困难。
我想在目录中添加一些空间,这样很好。但是,如果我尝试添加多段摘要,缩进在目录中可以正常工作,但在实际章节中则不行;不知何故,缩进指令似乎被吞没了。
我该如何解决这个问题?MWE 和相关输出如下:
\documentclass{memoir}
\newcommand\authorabstract[1]{%
\chapterprecishere{\mbox{}\\[\baselineskip]#1}%
\chapterprecistoc{\\[.5\baselineskip]#1\\[.5\baselineskip]}%
}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{First chapter}
% this goes into the document and the ToC
\authorabstract{Author\newline\newline First paragraph.\newline\indent Second paragraph.}
Chapter text here.
\end{document}
目录中的正确缩进:
章节中缺少缩进:
答案1
memoir
使用环境quote
(没有内部缩进)组合在一起\prechapterprecis
。
您可以添加一个\parindent
来\authorabstract
缩进第二段。
\documentclass{memoir}
\newlength{\docparindent}
\setlength{\docparindent}{\parindent} % save document indent
\newcommand\authorabstract[1]{%
\chapterprecishere{\mbox{}\\[\baselineskip]\parindent\the\docparindent#1}% changed <<<<<<<<
\chapterprecistoc{\\[.5\baselineskip]#1\\[.5\baselineskip]}%
}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{First chapter}
% this goes into the document and the ToC
\authorabstract{Author\newline\newline First paragraph.\newline\indent Second paragraph.}
Chapter text here.
\end{document}