Page Layout ⇒ Headings
Headings
Here there is all my code if it can help understanding my issues..
- Attachments
-
- Fiches MathSup (1).zip
- (11.05 KiB) Downloaded 367 times
Headings
Once compiled i got this.
- Attachments
-
- Fiches_MathSup (6).pdf
- (280.34 KiB) Downloaded 257 times
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Headings
Ok, with that code I could test it. This puts the part title into the header:
And this puts the numbering style on chapter start pages:
Stefan
Code: Select all
\let\Oldpart\part
\newcommand{\parttitle}{}
\renewcommand{\part}[1]{\Oldpart{#1}\renewcommand{\parttitle}{#1}}
\fancyhead[L]{\scriptsize \textsc{Partie \thepart. \parttitle}} % À changer
Code: Select all
\fancypagestyle{plain}{%
\fancyhf{}% clear all header and footer fields
\fancyfoot[C]{ $-$ \thepage \ $-$}}
LaTeX.org admin
Headings
Oh perfect it works, last little issue, now I have the line in the header also on chapter and part pages like that :
And it annoys a bit, if it's possible to erase it
Thank you so much,
Isak Y.
And it annoys a bit, if it's possible to erase it

Thank you so much,
Isak Y.
- Attachments
-
- cup.png (4.13 KiB) Viewed 9264 times
-
- cap.png (27.11 KiB) Viewed 9264 times
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Headings
No problem, modify above like this:
Stefan
Code: Select all
\fancypagestyle{plain}{%
\fancyhf{}% clear all header and footer fields
\fancyfoot[C]{ $-$ \thepage \ $-$}
\renewcommand{\headrulewidth}{0pt}}
LaTeX.org admin