General ⇒ new header
new header
1) Is it possible to generate a new header after page 94 ? It should not be chapter, it should be like KAYNAKLAR or ÖZ GEÇMİŞ.
2) I want to remove the "dot" after chapter in the table of contents.
e.g. BÖLÜM IV. BULGULAR should be BÖLÜM IV BULGULAR
thanks in advance
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
new header
Code: Select all
\addcontentsline{toc}{mistix}{\protect\chapternameToC\quad\Roman{chapter} #1}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
new header
- Stefan Kottwitz
- Site Admin
- Posts: 10361
- Joined: Mon Mar 10, 2008 9:44 pm
new header
I have used
Code: Select all
\section*{.....}
What is the difference
Code: Select all
\section*{.....}
Code: Select all
\markboth{...}{...}
- Stefan Kottwitz
- Site Admin
- Posts: 10361
- Joined: Mon Mar 10, 2008 9:44 pm
new header
Regarding the difference:
\section*
starts a section but only with a header in the document, not in the page header, and not numbered and not in the table of contents. It's for "unimportant" sections, such as an introduction. \markboth{...}{...}
adds a header on left and right hand page, anything you want. Such as for a \chapter*
or \section*
command when you don't have a header. \markright{...}
does the same just for a right hand side (\section*
) in a twoside document.Stefan