summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex
blob: 5420e02f79ea66f71600c788c69caac2c24aa141 (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
31
32
33
34
35
36
\startcomponent correspondence-revision

\environment correspondence-environment

\chapter{File versions}

The letter module comes as a package with many different files
and each of them has their own version tag, you could read this
version tag at the bottom of each file in the field date.

\start

\setuptabulate[header=repeat]

\starttabulatehead
\NC \bf File \NC \bf Revision \NC \bf Description            \NC\NR
\stoptabulatehead

\startmodulecode
global.context.starttabulate( { "|l|l|l|" } )
for k,v in global.pairs(correspondence.files) do
    global.context.NC()
    global.context("%s",correspondence.files[k]["name"])
    global.context.NC()
    global.context("%s",correspondence.files[k]["version"])
    global.context.NC()
    global.context("%s",correspondence.files[k]["description"])
    global.context.NC()
    global.context.NR()
end
global.context.stoptabulate()
\stopmodulecode

\stop

\stopcomponent