侧章节缩略图标题与部分分区冲突

侧章节缩略图标题与部分分区冲突

这是Koma-script / 暗行-B将章节分成几部分。当新部分开始时,我该如何禁用此功能?在给出的示例中,这意味着从页面“Deuxième partie:Bar”中删除缩略图“Chapitre 2”。

\documentclass[oneside]{scrbook}
\usepackage{fontawesome}
\usepackage[french]{babel}
\usepackage{/usr/local/texlive/2018/texmf-dist/doc/latex/koma-script-examples/Anhang-B/source/chapterthumb}
\usepackage{csquotes}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{scrlayer-scrpage}
\AddLayersToPageStyle{@everystyle@}{chapterthumb}
\addtokomafont{chapterthumb}{\bfseries}

\usepackage{hyperref}

\begin{document}
\part{Foo}

\chapter{Pas du tout}

\lipsum[1]

\chapter{Un peu}

\lipsum[2]

\pagestyle{empty}
\part{Bar}

\chapter{Beaucoup}

\lipsum[3]

\chapter{Passionnément}

\lipsum[4]

\end{document}

输出

答案1

问题出在\AddLayersToPageStyle{@everystyle@}{chapterthumb}。它将图层添加chapterthumb到样式@everystyle@。因此 chapterthumbs 与所有图层页面样式一起使用:emptyscrheadingsplain( 的别名plain.scrheadings)...

您可以为部分页面定义新的页面样式,并chapterthumbs仅添加到页面样式scrheadigsplain.scrheadings

\documentclass[oneside]{scrbook}
\usepackage{fontawesome}
\usepackage[french]{babel}
\usepackage{chapterthumb}% http://mirrors.ctan.org/info/examples/KOMA-Script-6/Anhang-B/source/chapterthumb.sty
\usepackage{csquotes}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{scrlayer-scrpage}
\newpairofpagestyles[scrheadings]{part}{}
\renewcommand\partpagestyle{plain.part}

\AddLayersToPageStyle{scrheadings}{chapterthumb}
\AddLayersToPageStyle{plain.scrheadings}{chapterthumb}
\addtokomafont{chapterthumb}{\bfseries}

\usepackage{hyperref}

\begin{document}
\part{Foo}
\chapter{Pas du tout}
\lipsum[1]
\chapter{Un peu}
\lipsum[2]

\part{Bar}
\chapter{Beaucoup}
\lipsum[3]
\chapter{Passionnément}
\lipsum[4]
\end{document}

结果:

在此处输入图片描述

或者您可以chapterthumb@everystyle@部分页面上删除图层:

\documentclass[oneside]{scrbook}
\usepackage{fontawesome}
\usepackage[french]{babel}
\usepackage{chapterthumb}% http://mirrors.ctan.org/info/examples/KOMA-Script-6/Anhang-B/source/chapterthumb.sty
\usepackage{csquotes}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{scrlayer-scrpage}
\AddLayersToPageStyle{@everystyle@}{chapterthumb}
\addtokomafont{chapterthumb}{\bfseries}

\newcommand*{\oldpartheadendvskip}{}
\let\oldpartheadendvskip\partheadendvskip
\renewcommand\partheadendvskip{%
  \RemoveLayersFromPageStyle{@everystyle@}{chapterthumb}%
  \oldpartheadendvskip
  \AddLayersToPageStyle{@everystyle@}{chapterthumb}%
}

\usepackage{hyperref}

\begin{document}
\part{Foo}
\chapter{Pas du tout}
\lipsum[1]
\chapter{Un peu}
\lipsum[2]

\part{Bar}
\chapter{Beaucoup}
\lipsum[3]
\chapter{Passionnément}
\lipsum[4]
\end{document}

相关内容