diff options
author | Karl Berry <karl@freefriends.org> | 2007-01-23 01:10:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-01-23 01:10:54 +0000 |
commit | 01c8ac287cb4c8ff3995bd374319a61e1ea0c884 (patch) | |
tree | f3231c07ff6ba080d0df87540c2ae28adadbbd72 /Master/texmf-dist/tex/latex/piff/time.sty | |
parent | e2a1e927fd17f0e87ca72af9ad87c0c0c3337a09 (diff) |
remove unmaintained piff, tensor.sty conflicts
git-svn-id: svn://tug.org/texlive/trunk@3711 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/piff/time.sty')
-rw-r--r-- | Master/texmf-dist/tex/latex/piff/time.sty | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/Master/texmf-dist/tex/latex/piff/time.sty b/Master/texmf-dist/tex/latex/piff/time.sty deleted file mode 100644 index 92a0de66001..00000000000 --- a/Master/texmf-dist/tex/latex/piff/time.sty +++ /dev/null @@ -1,45 +0,0 @@ -\def\filename{time.sty} -\def\fileversion{1} -\def\filedate{15 Feb 1995 10:55:01 BST} -%% This is time.sty -%% Copyright (C) 1995 Mike Piff -%% All rights reserved. -%% Copying of this file is authorized only if -%% you make absolutely no changes to your copy. -%% -%% M.Piff@sheffield.ac.uk -%% -\typeout{\filename\space v\fileversion, (C) Copyright Mike Piff, \filedate} -\NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesPackage{time} -\def\now{{% - \def\Time{3}% - \def\Hour{4}% - \def\Minute{5}% - \count\Time=\time\relax - \ifnum\count\Time=0 - \count\Time=1440 %%force 12pm - \fi - \count\Hour=\count\Time\relax - \divide\count\Hour by 60\relax%%hours past midnight - \count\Minute=\count\Hour\relax - \multiply\count\Minute by -60\relax - \advance\count\Minute by \count\Time\relax %%minutes past hour - \ifnum\count\Hour=0 - \count\Hour=12 - \else - \ifnum\count\Hour>12 - \advance\count\Hour by-12 - \fi - \fi - \the\count\Hour\relax:% - \ifnum\count\Minute<10 - 0% - \fi - \the\count\Minute\relax - \ifnum\count\Time>720 - pm% - \else - am% - \fi -}} |