Always the content of the footer starts from the top of the footer space. Here i have a multi-line footer and i would like its bottom be aligned with the bottom of the footer space.
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{datetime}
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage{geometry}
\geometry{includeheadfoot,a4paper, top=1in, bottom=2in}
\renewcommand\footrulewidth{0.1pt}
\pagestyle{fancy}
\fancyfoot[C]{%
\makebox[0pt]{\begin{tabular}[b]{c}
\textbf{this is the first line in footer} \
this is the second line in footer \
this is the third line in footer
\end{tabular}}}
\begin{document}
\lipsum[1]
\end{document}[![enter image description here][1]][1]
Final solution My solution :
\fancyfoot[C]{%
\begin{minipage}[b][1.5in][b]{\textwidth}{
\centering\Longstack{
\textbf{this is the first line in footer} \\
this is the second line in footer \\
this is the third line in footer
this is the fourth line in footer%
}
\end{minipage}}
as shown below the bottom part of the footer content remains at the bottom of the footer area however the number of lines in it.
simpler solution My other solution :
\geometry{top=1in, bottom=1.8in, foot=0.5in}
% "foot=" is the space between the bottom of the text in the document
body and the top of the footer.
[ ... ]
\rfoot{\thapage/\pageref{LastPage}}
\cfoot{}
\lfoot{%
\parbox[t][1.0in][t]{\textwidth}{
\textbf{this is the first line in footer} \\
this is the second line in footer \\
this is the third line in footer
this is the fourth line in footer%}}






