I'm using the fancyhdr package, and all is working well apart from the first line of the text on each page is way too close to the header line.
Any ideas how to move the text down a bit?
Thanks in advance

Maxine
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
Following the links in the mentioned topic would have shown you how to do this. There are detailed instructions. However, this behaviour is not normal. So it would have been interesting to see what's causing it. Your solution appears improper.maxiness wrote:Sorry, I wasnt really sure what I have to include to get a MWE. [...]
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{fancyhdr}
\usepackage{blindtext}
% Setup for page layout (fancyhdr)
\fancyhf{}
\lhead{\itshape ST215 Assessment I}
\rhead{\itshape Linear Regression in SPLUS}
\rfoot{\thepage}
\pagestyle{fancy}
\begin{document}
\blinddocument
\end{document}
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