hi guys,
i've been trying to find a way to get more space above and below the footer line as it looks too packed if i leave like it is...
does anyone know how to get more space in there?
thank you
Page Layout ⇒ Modifications to the Footer
Modifications to the Footer
- Attachments
-
- here you can see that everything is too packed
- problem_latex_footnotes.PNG (44.26 KiB) Viewed 4071 times
Modifications to the Footer
Hi there,
Have you tried something like:
This will, as the command says, increase the head/foot height to XXpt. Don't forget to set the paper height according though.
Cheers
Have you tried something like:
Code: Select all
\setlength{\headheight}{XXpt}
Cheers
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
Modifications to the Footer
The approach of fatra2 doesn't take two critical points into account.
Best regards and welcome to the board
Thorsten
- There is no length register to control the foot height.
- The footnotes belong to the text body and not to the footer.
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[uft8]{inputenc}
\usepackage{babel}
\usepackage[onehalfspacing]{setspace}
\usepackage{blindtext}
\skip\footins=2\bigskipamount % Determine the space above the rule
\renewcommand*{\footnoterule}{%
\kern-3pt%
\hrule width 2in%
\kern 2.6pt%
\vspace{\smallskipamount} % The additional space below the rule
}
\begin{document}
\blindtext\footnote{The quick brown fox jumps over the lazy dog.}
\blindtext[3]
\end{document}
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: Modifications to the Footer
thank you thorsten 
it worked!

it worked!