将 \frontmatter 章节标题与 \mainmatter 章节标题放在同一位置

将 \frontmatter 章节标题与 \mainmatter 章节标题放在同一位置

我希望这个词介绍距离第 1 页顶部的字数恰好第一章标题从第 3 页顶部开始。

我之所以使用是\frontmatter因为我希望标题为介绍沒有編號。

也许我可以利用来\phantom实现这一点。但我不知道怎么做。

\documentclass{book}
\usepackage[paperwidth=4.25in, paperheight=5.5in]{geometry}
\usepackage{lipsum}
\usepackage{fancyhdr}
\usepackage{titlesec}

\renewcommand{\thechapter}{\Roman{chapter}}

\fancyhf{}
\pagestyle{fancy}
\renewcommand\headrulewidth{0pt}
\fancyfoot[CE,CO]{\thepage}

\titleformat{\chapter}[display]
{\normalfont\fillast}
{\Huge \thechapter}
{1ex minus .1ex}
{\large \thispagestyle{empty}}
{}

\titlespacing{\chapter}
{3pc}{*3}{*2}[3pc]

\begin{document}

\frontmatter
\chapter{Introduction}
\lipsum[66]

\mainmatter
\chapter{Title of first chapter}
\lipsum[66]

\end{document}

相关内容