Page LayoutFootnotes at bottom

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Footnotes at bottom

Post by s140504 »

Hello

Thanks to the guys in here my Latex is looking good now.

I have an issue that I'd like your help with.
My footnotes in my doc comes right after my text.
I'd like it to be at the bottom of the page - so that it is as far down as possible - depending on the volume of the footnote.

I put in a screenshot here with some added blue lines to show my point : ) :
Capture37.PNG
Capture37.PNG (127.44 KiB) Viewed 7758 times
I have not done anything special to the document - so I believe what I have now is 'standard'-formatting.
I post my main here to help you help me. Thank you.

Code: Select all

\documentclass[12pt,a4paper]{article}
%\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{comment}
\usepackage{parskip}
\usepackage[nopar]{lipsum}

%-----bibliography begin -----%
\usepackage[backend=biber, sorting=none]{biblatex}
\addbibresource{Bibliography.bib}
%-----bibliography end -----%

\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage[titletoc]{appendix}
\usepackage{amsmath}
\usepackage{float}
\usepackage{fancyhdr}
\setlength{\headheight}{19pt}
\pagestyle{fancy}
\usepackage{lastpage}
\usepackage{setspace}
\usepackage{hyperref}
\usepackage{afterpage}
\usepackage{caption}
\captionsetup[figure]{textfont={it}}

%-----header/footer -----%
\lhead{\includegraphics[height=0.5cm]{figurer/DTU/DTU_Logo.jpg}}
\chead{s140504}
\rhead{\includegraphics[height=0.5cm]{figurer/BWSC/bwsclogo.jpg}}
\fancyfoot[L]{Section \thesection}
\fancyfoot[C]{Kristian Dalgaard}
\fancyfoot[R]{Page \thepage \hspace{1pt} of \pageref{LastPage}}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
%-----header/footer -----%

\begin{document}
\include{Frontpage}
\clearpage
\thispagestyle{empty}
\mbox{}
\newpage

\include{Abstract}

\include{Preface}

\include{Abbreviations}

\renewcommand{\baselinestretch}{1.0}\normalsize
\tableofcontents
\renewcommand{\baselinestretch}{1.0}\normalsize

\include{Problem_statement}

\include{Introduction}

\include{Introducing_Elements}

\include{Theory}

\include{Parameters}


%\input{Bibliography_test}
%\newpage

\pagestyle{empty}
\printbibliography

\begin{appendices}
  \include{Appendix/Appendix_A}
  
  \include{Appendix/Appendix_B}
  
  \include{Appendix/Appendix_C}
\end{appendices}

\clearpage
\thispagestyle{empty}
\mbox{}
\newpage

\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Footnotes at bottom

Post by Stefan Kottwitz »

Hi,

when I run your code above, and add a footnote, it is at the bottom of the page.

What other code do you have that is not shown here?

But you could try in your preamble:

Code: Select all

\usepackage[bottom]{footmisc}
Stefan
LaTeX.org admin
s140504
Posts: 49
Joined: Mon Sep 24, 2018 2:49 pm

Footnotes at bottom

Post by s140504 »

The footnotes where at the bottom - when the text reached the bottom.
Else it came right after the text.

Your code did the trick.

Thanks again Stefan.
Post Reply