summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/genmisc/time.sty
blob: e1b86ce46d56f4ba66db12a563e9131c8a0872a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%%% Save file as: TIME.STY (TIME.TEX)      Source: FILESERV@SHSU.BITNET  
%%% Author: Sunando Sen <sens@nyuacf.bitnet> <sens@acfcluster.nyu.edu>
%%% Source: INFO-TeX@SHSU.edu, Mon, 6 Jan 1992 23:14 EST
%%% Purpose: The command \now produces the current time in hh:mm A.M./P.M.
%%%          format; similar to \today
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%  Macro to write the current time  %%%%%%%%%%%%%%%%%%%
%          \now produces the current time, e.g., 11:15 A.M.            %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\newcount\hour \newcount\minute
\hour=\time \divide \hour by 60
\minute=\time

\count99=\hour \multiply \count99 by -60 \advance \minute by \count99

\def\now{%
\ifnum \hour<13
  \ifnum \hour=0 \advance \hour by 12 \number\hour:\else \number\hour:\fi%
     \ifnum \minute<10 0\fi%
     \number\minute%
\ A.M.%
\else \advance \hour by -12 \number\hour:%
  \ifnum \minute<10 0\fi%
  \number\minute%
  \ P.M.%
\fi%
}

\endinput