quotchap 包如何处理从外部文件读取的章节?

quotchap 包如何处理从外部文件读取的章节?

如果我使用该quotchap包,并附上以下示例代码,

\documentclass{book}
\usepackage[grey]{quotchap}
\begin{document}
\input{ch1}
\chapter{Chapter 2 Heading}
\end{document}

它将第 2 章识别为第 1 章,并且没有为从以下文件读取的第一章分配编号:

\chapter*{Introduction}
\begin{quote}
A quote.
\end{quote}

对这个问题有什么提示吗?

相关内容