部分和章节之间的额外部分

部分和章节之间的额外部分

我想在 下有一个额外的分区级别\part{},比如\subpart。使用命令时,页面上的位置或字体大小没有区别\part{}

我尝试了 titlesec,但无法让它工作。我读过文档,但没有成功。这是示例:

\documentclass{book}

\usepackage{titlesec}
 \titleclass{\subpart}{page}[\part]
 \titleformat{\subpart}[block]{\centering\huge\bfseries}{}{10pt}{}[]
%\titlespacing*{\subpart}{}{}{}[]
\newcounter{subpart}
\renewcommand{\subpart}{\Alph{subpart}}
\begin{document}
        \part*{History}
    \subpart*{Before}
        \chapter*{1}
        \chapter*{2}
        \chapter*{3}
    \subpart*{After}
\part*{Evidence}
    \subpart*{Archeology}
\end{document}

谢谢。

答案1

您必须“renewcommand” \thesubbpart,而不是\subpart

\documentclass[b5paper]{book}
\usepackage[b5paper, showframe]{geometry} \usepackage[newparttoc]{titlesec}

\titleclass{\subpart}{page}[\part]
\newcounter{subpart}
 \titleformat{\subpart}[block]{\centering\Huge\bfseries}{\thesubpart.}{10pt}{\thispagestyle{empty}}
\titlespacing*{\subpart}{0pt}{151pt}{12\baselineskip}
\renewcommand{\thesubpart}{\Alph{subpart}}

\begin{document}

        \part*{History}
    \subpart{Before}
        \chapter*{One}
        \chapter*{Two}
        \chapter*{Three}
    \subpart{After}
\part*{Evidence}
    \subpart*{Archeology}

\end{document} 

在此处输入图片描述

相关内容