目录和页眉/页脚的问题

目录和页眉/页脚的问题

我确实需要您帮助解决以下一些问题。任何帮助我都非常感谢。在此先谢谢您。

  1. 我创建了一个包含部分、章节、节等的报告。但是有一些标题,我想将它们包含在目录中(如简介、附件等),格式与部分相同(字体、颜色、与页码相连的点)。你能告诉我怎么做吗?

  2. 我还创建了页眉/页脚。对于某些页面,我插入了代码。 \thispagestyle{fancy} 强制页面采用代码中定义的页眉/页脚形式。它适用于目录、章节等页面,但对于部分,但事实并非如此。那么如何为该页面应用表单页眉/页脚呢?

在此处输入图片描述

  1. 页眉和内容(章节)之间有很大的空白。如何按我们想要的方式减少这个空白?

您可以看到附加的照片和代码。

非常感谢。

在此处输入图片描述

\documentclass{report}

%%%%% Format font + page + langue
\usepackage[utf8x]{inputenc}
\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.5cm,right=2cm,marginparwidth=1.75cm,headheight=35pt]{geometry}

\usepackage[english]{babel}

\usepackage[T1]{fontenc}
\setlength{\parindent}{0cm}
\setlength{\parskip}{1em}
\renewcommand{\baselinestretch}{1}
\usepackage[titletoc]{appendix}

\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}

%%%%% Indentfirst
\usepackage{indentfirst}
\setlength{\parindent}{1cm}
\usepackage{libertine} 
\usepackage{lmodern}

%%%%% Header + Footer
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\lfoot{Minh Tu \textsc{Pham} \copyright}
\cfoot{Rapport de stage}
\rfoot{\textbf{Page \thepage}}

\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}

%%%%% Create image + photo
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
%\usepackage[colorlinks=true, allcolors=blue]{hyperref}
\usepackage{amsmath,amssymb,amsthm,amsfonts,mathrsfs}
\usepackage{float}
\usepackage[export]{adjustbox} %% choose the position (left, right) of a image
\usepackage{subcaption} %% pour put many images in 1 figure
\usepackage{wrapfig} %% wrap text and image
\usepackage{babelbib}
\usepackage{caption}

%%%%% Table of contents
\setcounter{secnumdepth}{5} % seting level of numbering in the document
\setcounter{tocdepth}{5} % seting level of numbering in the ToC
\usepackage[colorlinks=true]{hyperref}
\usepackage{tocloft}
\newcommand{\Color}[1]{\hypersetup{linkcolor=#1}\color{#1}}
\renewcommand{\cftpartfont}{\Color{red}\large\bfseries}
\renewcommand{\cftchapfont}{\Color{red}\large\bfseries}
\renewcommand{\cftsecfont}{\Color{blue}}
\renewcommand{\cftsubsecfont}{\Color{green}}
\renewcommand{\cftsubsubsecfont}{\Color{black}}
\renewcommand{\cftpartpagefont}{\large\bfseries\Color{red}}
\renewcommand{\cftchappagefont}{\large\bfseries\Color{red}}
\renewcommand{\cftsecpagefont}{\Color{blue}}
\renewcommand{\cftsubsecpagefont}{\Color{green}}
\renewcommand{\cftsubsubsecpagefont}{\Color{black}}
\renewcommand{\cftpartleader}{\large\bfseries\color{red}\cftdotfill{\cftdotsep}}
\renewcommand{\cftchapleader}{\large\bfseries\color{red}\cftdotfill{\cftdotsep}}
\renewcommand{\cftsecleader}{\Color{blue}\cftdotfill{\cftsecdotsep}}
\renewcommand{\cftsubsecleader}{\Color{green}\cftdotfill{\cftsubsecdotsep}}
\renewcommand{\cftsubsubsecleader}{\Color{black}\cftdotfill{\cftsubsubsecdotsep}}


\begin{document}
\tableofcontents \thispagestyle{fancy}
\newpage
\begin{center}
\huge\bfseries{Remerciements}
\end{center}

benefits



\newpage
\begin{center}
\huge\bfseries{Introduction}
\end{center}

tion benefits

\newpage
\part{Aba asg asdf asdf asdf } \thispagestyle{fancy}

\chapter{AS asdfa sdfasdj h ert bc bcvb} \thispagestyle{fancy}

\section{adfas}
\section{asfasf asfd a}

\chapter{B asfd as asd fasdf asdf asdf}
\section{asdfasdf asdfasdfa}
\subsection{asdf asdfa sdfasdfa}


\newpage
\begin{center}
\huge\bfseries{References}
\end{center}
asdf a
benefits


\end{document}

答案1

这是三个不同的问题。这里我只回答第二个问题。¹

要在普通页面(例如章节或部分页面)上获得相同的页眉和页脚,请使用fancyplainfancy重新定义\plainheadrulewidth\plainfootrulewidth

例子:

\documentclass{report}
\usepackage{lipsum}% only for dummy text

\usepackage{fancyhdr}
\pagestyle{fancyplain}% <- changed
\fancyhf{}
\lfoot{Minh Tu \textsc{Pham} \copyright}
\cfoot{Rapport de stage}
\rfoot{\textbf{Page \thepage}}

\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
\renewcommand{\plainheadrulewidth}{0.5pt}% <- added
\renewcommand{\plainfootrulewidth}{0.5pt}% <- added

\begin{document}
\tableofcontents
\part{A part}
\chapter{A chapter}
\lipsum
\part{A second part}
\chapter{A second chapter}
\lipsum
\end{document}

结果:

在此处输入图片描述

¹请针对其他问题提出新问题,并提供短的显示单一问题的示例。

相关内容