[Tex/LaTex] Text placed below bottom margin that is not footnote

geometrymargins

I'm using package geometry to specify global document margins:

\usepackage[scale=0.82, top=1.5cm, bottom=2.5cm]{geometry}

But I have a piece of information that I would like to add on first page on the bottom and somehow override margin limitations set by geometry package. Easiest way to say thing that I want achieve: I want to place text on bottom margin (below these 2.5cm).

Best Answer

I suggest using the package textpos. With the optional parameter absolute, you can positioning the extra text precisely at the place where you want it to be. It is a robust package, with lot of options and posibilities. I have included a MWE (the \blindtext-package produces dummy text):

\documentclass[a4paper,UKenglish]{article}
\usepackage[scale=0.82, top=1.5cm, bottom=2.5cm]{geometry}
\usepackage[absolute]{textpos}
\setlength{\TPHorizModule}{1mm}
\setlength{\TPVertModule}{1mm}

\usepackage{blindtext} % Just to have some dummy text

\begin{document}
\begin{textblock}{50}(150,287)
\noindent Text under bottom margin (below 2.5cm)
\end{textblock}

\blinddoc
\end{document}