Changeset 2736


Ignore:
Timestamp:
Apr 20, 2006, 4:43:10 PM (19 years ago)
Author:
ole
Message:

Comments and take care of latex2html not knowing about datetime

Location:
documentation/user_manual
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • documentation/user_manual/anuga_user_manual.tex

    r2734 r2736  
    3333%Draft date
    3434
     35% update before release!
     36% Use an explicit date so that reformatting
     37% doesn't cause a new date to be used.  Setting
     38% the date to \today can be used during draft
     39% stages to make it easier to handle versions.
     40
     41
    3542\longdate       % Make date format long using datetime.sty
    3643%\settimeformat{xxivtime} % 24 hour Format
    3744\settimeformat{oclock} % Verbose
    38 
    3945\date{\today, \ \currenttime}   
    40                 % update before release!
    41                 % Use an explicit date so that reformatting
    42                 % doesn't cause a new date to be used.  Setting
    43                 % the date to \today can be used during draft
    44                 % stages to make it easier to handle versions.
    45 
    46                
     46
     47\ifhtml
     48\date{\today} % latex2html does not know about datetime   
     49\fi
     50
     51
     52
     53
    4754
    4855\release{1.0}   % release version; this is used to define the
  • documentation/user_manual/update_anuga_user_manual.py

    r2733 r2736  
    11#!/usr/bin/env python
     2
     3"""Update, compile and create PDF and HTML from LaTeX file
     4
     5This can for example be run from a cronjob:
     6
     7  crontab -e
     8
     9with content
     10
     11SHELL=/bin/sh
     12PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:~/bin
     13
     14# m h dom mon dow command
     15  42 *  *   *   *  ~/anuga/documentation/user_manual/update_anuga_user_manual.py > ~/anuga/documentation/user_manual/update_anuga.log
     16#
     17
     18
     19Note UNIX only
     20 
     21"""
     22
    223
    324import os
Note: See TracChangeset for help on using the changeset viewer.