diff options
author | Karl Berry <karl@freefriends.org> | 2019-05-02 22:36:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-05-02 22:36:42 +0000 |
commit | bf8dedec03ea810ec4a50f1f1993134a47729640 (patch) | |
tree | 16bb4e1ef38615904743dd72fc6627443c371341 /Master/texmf-dist/doc/latex/fcolumn | |
parent | c334b6a3c7a2b6b53e9f3e26f795391362789d90 (diff) |
fcolumn (26apr19)
git-svn-id: svn://tug.org/texlive/trunk@50937 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/fcolumn')
-rw-r--r-- | Master/texmf-dist/doc/latex/fcolumn/README | 16 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/fcolumn/fcolumn.pdf | bin | 247757 -> 281502 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/fcolumn/makefile | 40 |
3 files changed, 48 insertions, 8 deletions
diff --git a/Master/texmf-dist/doc/latex/fcolumn/README b/Master/texmf-dist/doc/latex/fcolumn/README index b9fbe8c82a0..5ee451fa0d0 100644 --- a/Master/texmf-dist/doc/latex/fcolumn/README +++ b/Master/texmf-dist/doc/latex/fcolumn/README @@ -1,4 +1,4 @@ -The LaTeX-package ``fcolumn'' +The LaTeX-package ``fcolumn'', under LPPL 1.3 In financial reports, text and currency amounts are regularly put in one table, e.g., a year balance or a profit-and-loss overview. @@ -31,10 +31,10 @@ cash 145,85 profit 27.542,62 The core part of this table is input as \begin{tabular}{lflf} -house & 20000000 & equity capital & 5000000\\ -bank account & -60323 & mortgage & 15000000\\ -savings & 2800000 \\ -cash & 14585 & profit & 2754262\\ +house & 200000 & equity capital & 50000 \\ +bank account & -603,23 & mortgage & 150000 \\ +savings & 28000 \\ +cash & 145,85 & profit & 27542,62 \\ \sumline \end{tabular} @@ -48,9 +48,9 @@ in one tabular environment are possible. To install: ----------- -Run the file fcolumn.ins through LaTeX (in a directory also -containing fcolumn.dtx) and move the file fcolumn.sty to a place -searched by TeX. +Run the file fcolumn.ins through (La)TeX (in a directory also +containing fcolumn.dtx) or type ``make install'' and move the +file fcolumn.sty to a place searched by TeX. To produce the documentation: ----------------------------- diff --git a/Master/texmf-dist/doc/latex/fcolumn/fcolumn.pdf b/Master/texmf-dist/doc/latex/fcolumn/fcolumn.pdf Binary files differindex e5a127dbebe..79c96886b23 100644 --- a/Master/texmf-dist/doc/latex/fcolumn/fcolumn.pdf +++ b/Master/texmf-dist/doc/latex/fcolumn/fcolumn.pdf diff --git a/Master/texmf-dist/doc/latex/fcolumn/makefile b/Master/texmf-dist/doc/latex/fcolumn/makefile new file mode 100644 index 00000000000..7a751b7c92b --- /dev/null +++ b/Master/texmf-dist/doc/latex/fcolumn/makefile @@ -0,0 +1,40 @@ +.SUFFIXES: .pdf .glo .gls .ind .idx .dtx .sty .ins + +.ins.sty: + pdflatex $*.ins + +.dtx.glo: + pdflatex $*.dtx + +.dtx.idx: + pdflatex $*.dtx + +.glo.gls: + makeindex -s gglo.ist -o fcolumn.gls fcolumn.glo + +.idx.ind: + makeindex -s gind.ist -o fcolumn.ind fcolumn.idx + +.dtx.pdf: + pdflatex $*.dtx + +all: fcolumn.pdf + +install: + tex fcolumn.ins + +dist: fcolumn.dtx fcolumn.ins fcolumn.sty fcolumn.pdf README makefile + mkdir fcolumn; cp fcolumn.dtx fcolumn; cp fcolumn.ins fcolumn; \ + cp fcolumn.sty fcolumn; cp fcolumn.pdf fcolumn; cp README fcolumn; \ + cp makefile fcolumn; tar -czf fcolumn.tgz fcolumn; rm -r fcolumn + +fcolumn.pdf: fcolumn.dtx fcolumn.gls fcolumn.ind fcolumn.sty +fcolumn.idx: fcolumn.dtx +fcolumn.ind: fcolumn.idx +fcolumn.glo: fcolumn.dtx +fcolumn.gls: fcolumn.glo + +.PHONY: clean +clean: + -rm fcolumn.pdf fcolumn.sty fcolumn.log fcolumn.glo fcolumn.gls \ + fcolumn.ind fcolumn.idx fcolumn.aux fcolumn.ilg |