Time-Functions With this macros you can write the time of LaTeX-compilation into your doc.

in preamble:

\usepackage{time}
\newcommand\myTime{\now}
\lhead{\today - \myTime}
with \pagestyle{fancy} you can put the actual date with the time in the header. You can download an example-file.


Write in preamble:
\newcommand*{\theto}[1]{%
  \ifnum#1<10 0\fi
  \the#1%
}
\newcommand*{\timestamp}[1]{%
  \begingroup
    #1
    % format of date: "%d/%02d/%02d "
    \the\day/%
    \theto\month/%
    \expandafter\@gobbletwo\the\year
    \ %
    % format of time: "%02d.%02d"
    \begingroup
      \divide\time by 60 %
      \theto\time.%
      \multiply\time by 60 %
      \edef\x{\endgroup
        \advance\time by -\the\time\relax
      }%
    \x
    \theto\time
  \endgroup
}
and in the text use it like \timestamp{\small}. The parameter is the fontsize.