GeneralFootnote does not stick to bottom of page

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
hihabyte
Posts: 2
Joined: Tue Jun 02, 2009 12:47 am

Footnote does not stick to bottom of page

Post by hihabyte »

Hello everyone!

In my masters thesis, I have several footnotes. However, these footnotes seem to stick to my text, even if the regular text ends in the middle of the page for example. Having your footnote sticking to the bottom of this text in the middle of the page doesn't look very nice. So I would like it to always stick to the bottom, or in other words: I want the footnote to position itself upwards relative to the bottom of the page instead of downwards from the bottom of the text.

The question is thus: how can I make my footnotes stick to the bottom of the page? :)

tyvm in advance!
hihabyte

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

fatra2
Posts: 126
Joined: Fri May 01, 2009 1:43 pm

Footnote does not stick to bottom of page

Post by fatra2 »

Hi there,

How do you declare your footnotes??? I always declared them like this

Code: Select all

blablabla\footnote{this is the footnote to blablabla}
With this code, the footnotes were placed at the bottom of the page where blablabla is.

If this is what you have been doing, then give more info on your problem, maybe with a code example.

Cheers
hihabyte
Posts: 2
Joined: Tue Jun 02, 2009 12:47 am

Footnote does not stick to bottom of page

Post by hihabyte »

I have indeed simply been using the \footnote{} command. Footnotes are always placed on the correct page, but they do not stick to the bottom. I've checked it again and the problem seems to occur in situations where a figure doesn't fit on the current page anymore and is moved to the next page. An example:

Code: Select all

 blabla\footnote{het doel van een simulatie is immers nagaan hoe een systeem presteert} en maken  ... more text here

\myfigure[H]{width=10cm}{BackorderVersusVoorraad}{Backorderkost uitgezet tov. voorraadkost \label{VoorraadvsBackorder}}

\subsection{Prestatiematen gericht op het Bullwhip Effect}
In this case, there is no room for foonote and figure on the current page. So the figure is moved to the next page and the footnote moves up to the bottom of the text, like in the picture attached to this post. What I would like is for the footnote NOT to move upwards to the middle of the page.

Thanks already for your time. :)
Attachments
Screenshot of the footnote problem.
Screenshot of the footnote problem.
footnoteproblem.png (35.29 KiB) Viewed 58814 times
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Footnote does not stick to bottom of page

Post by Stefan Kottwitz »

Hi,

you could fix it with the footmisc package:

Code: Select all

\usepackage[bottom]{footmisc}
Stefan
azertyazerty
Posts: 7
Joined: Fri Nov 26, 2010 8:30 pm

Footnote does not stick to bottom of page

Post by azertyazerty »

Stefan_K wrote:you could fix it with the footmisc package:

Code: Select all

\usepackage[bottom]{footmisc}
thanks!
mahdi-me
Posts: 4
Joined: Mon Feb 27, 2012 3:28 pm

Re: Footnote does not stick to bottom of page

Post by mahdi-me »

Hi, all
I have same problem with the figure and footnote in my thesis.
This solution worked fine for me.
I usually refer to this forum and solve my problem using the best answer of Great Man ( Stefan-k ).
Today, I decide to appreciate Stefan-k so that register in this forum.
Thank you Great Man (Stefan-k) in advanced.
mahdi-me
Posts: 4
Joined: Mon Feb 27, 2012 3:28 pm

Footnote does not stick to bottom of page

Post by mahdi-me »

Stefan_K wrote:Hi,

you could fix it with the footmisc package:

Code: Select all

\usepackage[bottom]{footmisc}
Stefan
Thank you great man.
You are the best.
I usually solve my issues using your solution like this.
pme
Posts: 1
Joined: Wed Apr 04, 2012 4:39 am

Footnote does not stick to bottom of page

Post by pme »

Alternatively,

one can often use \clearpage after the section or paragraph in question.

Code: Select all

...
Lorem ipsum dolor sit amet, consectetur adipiscing 
elit. Aliquam luctus, arcu eu consectetur egestas,
urna erat tinciduntest, eu tristique lorem justo
vitae sem.  \footnote{...}

\clearpage

...
More explanation can be found here: http://www.personal.ceu.hu/tex/breaking.htm


Hope, this helps some.
Post Reply