我尝试fancytabs
按照手册中给出的示例进行操作
\documentclass{scrbook}
\usepackage{scrpage2}
\usepackage{fancytabs}
\usepackage{lipsum}
% Capture chapter head
\let\oldchapter\chapter
\newcommand\temphead{}
\newcommand\chaphead{}
\renewcommand\chapter[2][\temphead]{%
\renewcommand\temphead{#2}%
\renewcommand\chaphead{#2}%
\oldchapter[#1]{#2}}
% Set central right header to display tab
% for both scrplain and scrheadings
\cohead[\fancytab{\chaphead}{\thechapter}]
{\fancytab{\chaphead}{\thechapter}}
\renewcommand*{\chapterpagestyle}{scrplain}
\pagestyle{scrheadings}
\begin{document}
\chapter{A chapter}
\lipsum
\lipsum
\end{document}
但它不显示手册文档中显示的垂直实验室或这里。我只是从手册中复制了确切的示例。我哪里做错了?
答案1
该包fancytabs
使用 TikZ 包来绘制标签。为了计算标签的正确位置,TikZ 需要运行两次编译(pdf)latex
。