6

How can I create a default header, footer and customize the font of my LaTeX document?

I wanted something like this:

Default book title                     Chapter name
____________________________________________________________

content

____________________________________________________________
www.defaulturl.com                     PAGE NUMBER
Caramdir
  • 89,023
  • 26
  • 255
  • 291
Vinny2
  • 123

2 Answers2

8

As mentioned in Stefan's answer to How to customize headers and footers?, fancyhdr is the classical package to customize headers/footers. However, recently I've been using the titlesec package to define page styles, and I've found it really useful and as powerful as fancyhdr, so here's a little example achieving the desired result with titlesec:

\documentclass{report}
\usepackage[pagestyles]{titlesec}
\usepackage{url}
\usepackage{lipsum}% just to generate some filler text

\newcommand*\defaulturl{\url{www.some-url.com}}
\newcommand*\defaulttitle{Some Title}

\newpagestyle{mystyle}{
  \sethead{\defaulttitle}{}{\chaptertitle}\headrule
  \setfoot{\defaulturl}{}{\thepage}\footrule
}

\pagestyle{mystyle}

\begin{document}

\chapter{Test chapter}
\lipsum[1-40]

\end{document}
Gonzalo Medina
  • 505,128
4

Gonzalo mentioned fancyhdr (the classic solution) and titlesec. Modern classes such as Koma-Script classes (scrbook and friends) and memoir also have built-in ways of achieving this.

In the case of Koma-Script classes for example, you can achieve a lot by using the scrpage2 package. (Update 2014:) Since version 3.12 you should use the successor package scrlayer-scrpage instead.

Speravir
  • 19,491
raphink
  • 31,894