使用零件标题作为标题

使用零件标题作为标题

这个问题我问如何使用以 pkg 为标头定义的新分段级别的参数titlesec。现在重复相同的代码,我想问如何使用\part命令的参数作为标头。这似乎更容易,我查看了titlesec文档,有一个提示,但我不明白如何使用它。

    \documentclass[b5paper,twoside]{book}
    \usepackage{geometry}
    \usepackage{titletoc}
    \usepackage[rm,small,center,compact,newparttoc,clearempty,pagestyles]{titlesec}
    \usepackage{kantlipsum}
    \titleclass{\subpart}{page}[\part]
    \newcounter{subpart}
    \renewcommand{\thesubpart}{\Alph{subpart}}
    \newcommand{\subpartname}{Subpart}
    \titleformat{\subpart}[display]{\centering\normalfont\Large\bfseries}%
    {\subpartname~\thesubpart}{1pc}{\Huge\bfseries}
    \titlespacing{\subpart}{0pt}{0pt}{0pt}
    \titlecontents{subpart}[0pt]{\addvspace{1pc}\normalfont\bfseries}%
    {\thecontentslabel\enspace ---\enspace\large}%
    {\normalfont\large\bfseries}{\hspace{2em plus 1fill}\large\contentspage}
    \setcounter{secnumdepth}{-2}

    \newpagestyle{main}{
        \sethead[][\chaptertitle][] 
        {}{\parttitle}{} % Problem: Here I want to have part title. 
        \setfoot[][\thepage][]
        {}{\thepage}{}}
    \pagestyle{main}


    \newpagestyle{preface}{
        \sethead[][\chaptertitle][]
        {}{\parttitle}{}
        \setfoot[][\thepage][]
        {}{\thepage}{}}
    \pagestyle{empty}
    \assignpagestyle{\part}{empty}
    \assignpagestyle{\subpart}{empty}
    \assignpagestyle{\chapter}{empty}
    \settitlemarks{part,chapter}
    \begin{document}\frontmatter
\pagestyle{empty}

\chapter[Preface]{PREFACE}
\pagestyle{preface}
\kant[1-20]

\part{History}
\subpart{Primitive Historians}
\pagestyle{main}
\chapter{The Formation of the Concept of History}
\kant[1-20]
\end{document}

答案1

我应该多搜索,多注意,而不是简单地问问题。通过混合答案的部分这里和这个这里,我可以将\part参数作为标题,。第一个答案在 titlesec pkg 的帮助下修改了部分样式,也许有助于 pkg 识别此命令titlesec,而第二个答案,特别是他对答案的最后一条评论,使其可以用作标题。

我使用了第二个答案的最小示例。现在文件以章节标题作为偶数页的页眉,以部分标题作为奇数页的页眉。

注意:通过修改\part其参数的位置与原始部分命令输出相比略微向顶部移动,只有几分之一毫米。

\documentclass{book}
\usepackage[a6paper]{geometry}% just for the example
\usepackage[pagestyles]{titlesec}

\assignpagestyle{\part}{empty}     % Works[removes the page number from the part page]
\assignpagestyle{\chapter}{empty}  % Works[removes the page number from the starting page of  the chapter]
\titleformat{\part}[display]
{\normalfont\huge\bfseries\filcenter}{\partname\ \ \thepart}{22pt}{\Huge}

\newpagestyle{main}{
    \sethead[][\chaptertitle][] % even header
    {}{\parttitle}{} % odd header
    \setfoot[][\thepage][] % even footer: making the page number on th bottom of the page and center
    {}{\thepage}{} % odd footer
    \settitlemarks{part,chapter}}
\pagestyle{main}
\usepackage{kantlipsum}
\begin{document}
    \part{Bar}
        \chapter{Foo}
            \kant[1-20]
\end{document}

在此处输入图片描述 在此处输入图片描述

相关内容