I am using a \vfill expecting all the text on the last page to be at the bottom. I don't understand why its not. Is it because the table is a float or something. Hope this is not a silly question. I;ll remove it if it is.
\documentclass[a4paper,10pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{amssymb}
\usepackage{color}
\definecolor{Blue}{rgb}{0.0,0.0,0.7}
\definecolor{Red}{rgb}{0.7,0.0,0.0}
\definecolor{Green}{rgb}{0.0,0.5,0.0}
\definecolor{Gray}{gray}{0.85}
\definecolor{LightCyan}{rgb}{0.88,1,1}
\definecolor{White}{rgb}{1,1,1}
\usepackage{hyperref}
\begin{document}
\clearpage
\vfill
{
\begin{table}[ht]
\caption{Change History Rev B and C} % title of Table
%\centering % used for centering table
\begin{tabular}{|| l | l | c | p{8cm} ||} \hline
\textbf{Name} & \textbf{Revision} & \textbf{Date} & \textbf{Comments} \\ \hline
\hline
A.N.Other & PB1 & 16MAR2017 & blah blah \\ \hline
A.N.Other & PB2 & 29MAR2017 & blah blahblah blahblah blahblah blahblah blahblah blahblah blah. \\ \hline
A.N.Other & PB3 & 10MAY2017 & blah blahblah blahblah blahblah blah. \\ \hline
A.N.Other & PC2 & 17NOV2017 & blah blahblah blahblah blahblah blah temp relationship \\ \hline
\hline
\end{tabular}
\end{table}
}
\tiny
\begin{verbatim}
Stored in dev:/git/example
latex source file is: dd.tex
with sub directory images_sw_doc/ containing graphics files:
\end{verbatim}
Last Page.
typeset in {\Huge \LaTeX} \today.
\end{document}
\mboxbefore the\vfill. The way to think of it logically is that the\vfillneeds something (call it an anchor) against which to push. The\mbox{}provides such an anchor. For a\vfillapplied at the bottom of the page, you would want the anchor after the\vfill. Without the anchor, the\vfillis like a spring attached only at one end...can't apply any force. – Steven B. Segletes Oct 04 '18 at 11:17