fancyhdr 被 tocloft 覆盖

fancyhdr 被 tocloft 覆盖

我想改变目录中点的数量和分布,因此我尝试使用 tocloft 包来改变它,如下所示:

\usepackage{tocloft}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\cftdotsep}{3}

但我相信这样做会改变/删除我所有的 fancyhdr 设置,因为在包含新包后,标题就会消失。

以下是我当前的序言:

\usepackage[ngerman]{babel}

\usepackage{mathptmx}

\usepackage{graphicx}
\graphicspath{{images/}}

\usepackage[left=4cm, right=2cm, top=2.5cm, bottom=2.5cm]{geometry}

\usepackage{tocloft}
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\cftdotsep}{3}

% Header and Footer
\usepackage{fancyhdr}
\usepackage{nameref}
\usepackage{titleref}

\pagestyle{fancy}

\fancyhead{\currenttitle}
\fancyhead[C]{Praxisarbeit}
\fancyhead[R]{\thepage}

\usepackage{biblatex}
\addbibresource{quellen.bib}

梅威瑟:

\documentclass[12pt]{article}
\usepackage[ngerman]{babel}

\usepackage[left=4cm, right=2cm, top=2.5cm, bottom=2.5cm]{geometry}


%----the issue----%
%\usepackage{tocloft}
%\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
%\renewcommand{\cftdotsep}{3}

\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyhead{\leftmark}
\fancyhead[C]{title}
\fancyhead[R]{\thepage}
\fancyfoot{}
\fancyfoot[L]{}

\begin{document}

\pagenumbering{Roman} %römische Seitenzahlen
%--------Inhaltsverzeichnis------------
\tableofcontents
\addcontentsline{toc}{section}{Inhaltsverzeichnis}
\newpage
%--------Abbildungsverzeichnis---------
\listoffigures
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
%--------Abkürzungsverzeichnis---------
\newpage \section*{Abkürzungsverzeichnis}
\addcontentsline{toc}{section}{Abkürzungsverzeichnis}
%---------------ENDE-------------------


\newpage \pagenumbering{arabic} %arabische Seitenzahlen
%--------Einleitung---------
\newpage \section{section 1}
\subsection{subsection 1}
\subsection{subsection 2}
\subsection{subsection 3}

%--------Theoretischer Rahmen---------
\newpage \section{section 2}
\subsection{subsection 1}
\subsection{subsection 2}
\subsubsection{subsubsection 1}
\subsubsection{subsubsection 2}

%--------Methodik---------
\newpage \section{section 3}
\subsection{subsection 1}
\subsection{subsection 2}
\subsection{subsection 3}

\end{document}

相关内容