Graphics, Figures & Tables ⇒ Header with box made by tikZ
Header with box made by tikZ
I finally found a header with nice graphic in it to make a tutorial (for PDF).
Unfortunatelly the tikZ example is in report class and I can't change the
header's names.
1/ What would be the beter class for a tutorial style ?
2/ in that style : how to change the header's names ?
The example is :
Fancy chapter headings
Author: Stefan Kottwitz
http://texblog.net/latex-archive/layout ... pter-tikz/
Thanks
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
Header with box made by tikZ
What exactly do you mean by "header's names"?dlewin wrote:... is in report class and I can't change the
header's names...
Re: Header with box made by tikZ
I could had changed Main and after, but not "Contents".
Header with box made by tikZ
Code: Select all
\usepackage[spanish]{babel}
If you want to change those predefined names you have two options:
1) If you are not loading babel, a simple redefinition of the corresponding command is enough:
Code: Select all
\renewcommand\contentsname{New name}
\renewcommand\chaptername{New name}
2) If you are using babel with, for example, the spanish option then you will have to add something like this to the preamble:
Code: Select all
\addto\captionsspanish{%
\renewcommand\contentsname{New name}
\renewcommand\chaptername{New name}
}
Re: Header with box made by tikZ
Thanks a lot.