-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestfancypagestyle.tex
54 lines (48 loc) · 1.01 KB
/
testfancypagestyle.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
\documentclass{article}
\usepackage{fancyhdr}
\usepackage{extramarks} % for \firstleftmark and \lastrightmark
\usepackage{lipsum}
\begin{document}
% TABLE OF CONTENTS
\clearpage%
\fancypagestyle{toc}{%
\fancyhf{}%
\fancyhead[RO]{\thepage}%
\fancyhead[RO]{\textsl{TABLE OF CONTENTS}}%
\fancyfoot[C]{\thepage}%
}
\pagestyle{toc}%
\tableofcontents
\clearpage%
\fancypagestyle{list of tables}{%
\fancyhf{}%
\fancyhead[RO]{\thepage}%
\fancyhead[RO]{\textsl{LIST OF TABLES}}%
\fancyfoot[C]{\thepage}%
}
\pagestyle{list of tables}%
\listoftables
%
% LIST OF FIGURES
\clearpage%
\fancypagestyle{list of figures}{%
\fancyhf{}%
\fancyhead[RO]{\thepage}%
\fancyhead[RO]{\textsl{LIST OF FIGURES}}%
\fancyfoot[C]{\thepage}%
}
\pagestyle{list of figures}%
\listoffigures
\pagebreak
\pagestyle{fancy}%
\fancyhead[LO]{\slshape\lastrightmark}%
\fancyhead[RO]{\slshape\firstleftmark}%
\fancyfoot[C]{\thepage}%
%
% SECTIONS
\section{Intro}
\label{sec:intro}
\subsection{Subsec}
\label{sec:subsec}
\lipsum
\end{document}