toc 和 fancyhdr 包使用的一些问题

toc 和 fancyhdr 包使用的一些问题

首先,我希望我的介绍与我的参考书目(字体和位置)相同(照片 1),照片 2 中的介绍更清晰可见在此处输入图片描述

其次,我想把第二页右上角的“目录”去掉,改成“简介”(图片2)

在此处输入图片描述

\documentclass[12pt, a4paper]{report}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage{bm}
\usepackage{nccmath}
\usepackage{amsfonts, graphicx, verbatim, mathtools,amssymb, amsthm, mathrsfs}
\usepackage{color}
\usepackage{array}
\usepackage{setspace}% if you must (for double spacing thesis)
\usepackage{fancyhdr}
\usepackage{enumitem}
\usepackage{tikz}
\usepackage{parskip}
\usepackage{lipsum}
\usepackage{floatrow}
\usepackage{siunitx}
\usepackage{tocloft}
\usepackage[style=numeric,maxbibnames=99,sortcites=true,backend=bibtex]{biblatex}
\setlength\bibitemsep{0.5\baselineskip}
\addbibresource{References.bib}


\begin{document}
\newpage
\pagestyle{fancy}
\fancyhf{}
\fancyhead[EL]{\nouppercase\leftmark}
\fancyhead[OR]{\nouppercase\rightmark}
\fancyhead[ER,OL]{\thepage}

\tableofcontents

Introduction

bla bla bla 
\addcontentsline{toc}{chapter}{Introduction}
\chapter{Generalities on linear representations}

\chapter{Character theory}

\chapter{Fourier transform on finite groups}

\chapter{Future work}

\printbibliography
\addcontentsline{toc}{chapter}{Bibliography}
\end{document}

答案1

报告仅为单面,没有双面选项,因此\fancyhead[E/O]没有用。

对于问题 1

将其样式设为未编号的章节。chapter*{Introduction}

对于问题 2

用于\markboth将文本“简介”放入左右标记(但技术上只需要右标记)。未编号的章节不会自动放入目录中。通过强制页面样式为花哨,可以显示页眉,通常它们用于plain打开章节页面

\chapter{Introduction}
\thispagestyle{fancy}

您的更正代码如下

\documentclass[12pt, a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{bm}
\usepackage{nccmath}
\usepackage{amsfonts, graphicx, verbatim, mathtools,amssymb, amsthm, mathrsfs}
\usepackage{color}
\usepackage{array}
\usepackage{setspace}% if you must (for double spacing thesis)
\usepackage{fancyhdr}
\usepackage{enumitem}
\usepackage{tikz}
\usepackage{parskip}
\usepackage{lipsum}
\usepackage{floatrow}
\usepackage{siunitx}
\usepackage{tocloft}
\usepackage[style=numeric,maxbibnames=99,sortcites=true,backend=bibtex]{biblatex}
\setlength\bibitemsep{0.5\baselineskip}
\addbibresource{References.bib}


\begin{document}
\newpage
\pagestyle{fancy}
\fancyhead[R]{\nouppercase\leftmark}
\fancyhead[L]{\thepage}
\fancyfoot{}
\tableofcontents
\markboth{Introduction}{Introduction}
\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\thispagestyle{fancy}
bla bla bla
\lipsum[1-4]

\chapter{Generalities on linear representations}

\chapter{Character theory}

\chapter{Fourier transform on finite groups}

\chapter{Future work}

\printbibliography
\addcontentsline{toc}{chapter}{Bibliography}
\end{document}

例子

未标记但在目录中的示例

相关内容