对书籍分类的疑虑

对书籍分类的疑虑

我有一本分为多个章节的书,我需要在开头有一些页面,比如带有标题的页面等等。

  • 书名和作者(一页)
  • 致谢(标题页后)
  • 献词(一页,另加空白页)
  • 作者注(一页,另加空白页)
  • 序幕
  • 第1章 ...
  • 第 N 章
  • 结语
  • 结束语

我把所有章节都\start-stopchapter成对完成了,包括序言和结语,但我对其他页面/部分有疑问。

标题页、献词和作者注释……哪种方式最好?用命令?还是用环境?

关于序言/尾声……它们被定义为章节,但我希望它们没有编号,可以吗?

最后,在目录中,我希望包含所有章节,包括序言/结语,还有作者的注释和结束语。我认为这取决于我如何排版这些部分。

这里我提供了一个最小的例子:

\setuppapersize[A5]

\setupindenting[always,small,first]

% Header / Footer
\setuppagenumbering[location={footer,right}]

% Chapters
\define[2]\CustomChapter
  {\dontleavehmode\framed[frame=off,width=broad,align=center]{#1.\\#2}}

\setuphead [chapter] [after={\blank[2*line]},before={\blank},command=\CustomChapter]


% Author's note and closing should have a blank line before title and two after
\setuphead [title] [after={\blank[2*line]},before={\blank},incrementnumber=list]


\starttext

% Title page
\startstandardmakeup
My title page
\stopstandardmakeup

% Author note
\starttitle[title={AUTHOR'S NOTE}]This is a note from the author.\stoptitle

% Chapters with Prologue and Epilogue
\startchapter[title={Prologue}]This is the Prologue.\stopchapter
\startchapter[title={One}]This is Chapter One.\stopchapter
\startchapter[title={Two}]This is Chapter Two\stopchapter
\startchapter[title={Epilogue}]This is the epilogue\stopchapter

% Closing Comments
\starttitle[title={CLOSING COMMENTS}]These are closing comments.\stoptitle

% Table of contents
\setupheadtext[content=CONTENTS]
\completecontent[criterium=previous]

\stoptext

这产生了我正在寻找的结构,但也暴露了我的问题,恐怕还有很多:

  • 标题页未计入页数
  • 呈现章节标题的命令似乎用于呈现标题,它忽略了我对标题的重新定义。
  • 我不知道如何关闭序言和结语的编号,对我来说,它们是章节,但没有编号。也许有更好的方法来标记它们。
  • 作者的注释和结束语未显示在目录中。
  • 现在我仔细看了看……我不确定章节标题是否位于页面中央,它们看起来有点不合适。

答案1

以下是我的建议:

  • 书名\startstandardmakeup ... \stopstandardmakeup

  • 信用/奉献等\starttitle ... \stoptitle

    如果您希望它们包含在目录中,请添加\setuphead[title][incrementnumber=list]

根据书的大小以及是否需要对前言和正文进行不同的编号,您可能还需要将第 1 章之前的所有材料包含在内,\startfrontmatter ... \stopfrontmatter将其余部分包含在内\startbodymatter .. \stopbodymatter

相关内容