From beeaf703741d4a46737ccf3c06680c071950a657 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Thu, 7 Apr 2011 23:20:16 +0000 Subject: inlinebib non-update git-svn-id: svn://tug.org/texlive/trunk@22018 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/bibtex/inlinebib/MANIFEST | 7 + .../texmf-dist/doc/bibtex/inlinebib/inlinebib.htm | 202 +++++++++++++++++++++ .../texmf-dist/doc/bibtex/inlinebib/inlinebib.txt | 151 +++++++++++++++ .../texmf-dist/doc/bibtex/inlinebib/inlinebib1.gif | Bin 0 -> 3686 bytes .../texmf-dist/doc/bibtex/inlinebib/inlinebib2.gif | Bin 0 -> 12611 bytes Master/texmf-dist/doc/latex/inlinebib/MANIFEST | 7 - .../texmf-dist/doc/latex/inlinebib/inlinebib.htm | 202 --------------------- .../texmf-dist/doc/latex/inlinebib/inlinebib.txt | 151 --------------- .../texmf-dist/doc/latex/inlinebib/inlinebib1.gif | Bin 3686 -> 0 bytes .../texmf-dist/doc/latex/inlinebib/inlinebib2.gif | Bin 12611 -> 0 bytes Master/tlpkg/libexec/ctan2tds | 1 + Master/tlpkg/tlpsrc/tcldoc.tlpsrc | 1 + 12 files changed, 362 insertions(+), 360 deletions(-) create mode 100644 Master/texmf-dist/doc/bibtex/inlinebib/MANIFEST create mode 100644 Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.htm create mode 100644 Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.txt create mode 100644 Master/texmf-dist/doc/bibtex/inlinebib/inlinebib1.gif create mode 100644 Master/texmf-dist/doc/bibtex/inlinebib/inlinebib2.gif delete mode 100644 Master/texmf-dist/doc/latex/inlinebib/MANIFEST delete mode 100644 Master/texmf-dist/doc/latex/inlinebib/inlinebib.htm delete mode 100644 Master/texmf-dist/doc/latex/inlinebib/inlinebib.txt delete mode 100644 Master/texmf-dist/doc/latex/inlinebib/inlinebib1.gif delete mode 100644 Master/texmf-dist/doc/latex/inlinebib/inlinebib2.gif diff --git a/Master/texmf-dist/doc/bibtex/inlinebib/MANIFEST b/Master/texmf-dist/doc/bibtex/inlinebib/MANIFEST new file mode 100644 index 00000000000..2b956db92e7 --- /dev/null +++ b/Master/texmf-dist/doc/bibtex/inlinebib/MANIFEST @@ -0,0 +1,7 @@ +inlinebib.bst +inlinebib.htm +inlinebib.sty +inlinebib.txt +inlinebib1.gif +inlinebib2.gif +pageranges.sty diff --git a/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.htm b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.htm new file mode 100644 index 00000000000..07619130bd1 --- /dev/null +++ b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.htm @@ -0,0 +1,202 @@ + + + +René Seindal - Software - Inline bibliography style + + + +

Inline bibliography style

+ +

I want to have by BiBTeX generated references inlined in footnotes +rather than the very terse references BiBTeX generates by default, so I +hacked together a BiBTeX style to do that. These macros are not +polished or in the form of a proper distribution, but I have used them +with succes myself.

+ +

The following discription have been made in haste. I will document +it better when I have the time (RSN :-).

+ +

There are two files: inlinebib.sty and indexing.bst.

+ + +

The idea

+ +

This works just like any other BiBTeX style. It will still generate +the bibliography at the end of the document, but it will also store all +the entries in the .aux files, so they can be inlined in +the following latex run.

+ +

The first time a citation is made using \cite the +complete bibliography entry is inserted. The following citations to the +same entry will generate a short form, with only authors last name and a +shortened title, followed by a "cit.". If the same bibliography +entry is cited several times in a row, the text will only be +"ibid.".

+ +

Citations of this form are designed to be used in footnotes.

+ +

A little example migth be appropriate (don't we all love +screenshots!).

+ +

+ + + + + + +
+

Footnotes from page one:

+[Example 1] +
+

Footnotes from page two:

+[Example 2] +
+ +(the overstrike problem is courtesy of xdvi(1)) +

+ +

It is not possible to avoid having the complete bibliography at the +end of the document. The macros simply won't work without it. If you +don't need it, just don't print it.

+ + + +

Usage

+ +

Formalities

+ +

To use these macros put the file inlinebib.sty in your +LaTeX search path and inlinebib.bst in your BiBTeX style +search path and then put the line:

+ +
+
\usepackage{inlinebib}
+
+ +

in the preamble of your document.

+ +

Other commands have to be added at the point where you want the +bibliography to appear, usually at the end of the document. To tell +BiBTeX to use the inlinebib style, you have to use +bibliographystyle: + +

+
+\bibliographystyle{inlinebib}
+
+
+ +

Often I add a leading explanation to the bibliography with the +\bibliographycomment macro. That is:

+ +
+
+\bibliographycomment{This bibliography ...}
+
+
+ +

The actual index is produced by the \bibliography +macro. Here you have to specify which BiBTeX databases you want to use.

+ +
+
+\bibliography{file ...}
+
+
+ +

These were all the formalities.

+ + +

Doing citations

+ +

When writing, just make citations as usual. Remember that these +macros can produce very verbose references, and they are intended for +footnotes.

+ +

The default implementation of \cite allows several +bibliography entries to be cited. This version allows only one at a +time. It still supports the optional argument, which should be a page +reference within the cited text.

+ +

There are a few additional macros available. \fullycite +forces a reference in the long form, \shortcite forces +the short form, and \noibid disables the generation +"ibid." references for the next citation (this can for example be +used at the end of each chapter).

+ +

To force later citations for certain entries to be either long or +short, the macros \fullcitenext{} and +\shortcitenext{} can be used. The single argument is a +comma separated list of BiBTeX labels that should be either long or +short the next time they are cited. E.g., the code +\fullcitenext{book1, book2} will cause LaTeX to forget that +the two references might have been seen earlier and they will be handled +as if they haven't be cited yet.

+ + +

The BiBTeX databases

+ +

This style does not require special changes to the BiBTeX +databases.

+ +

Sometimes the BiBTeX style doesn't manage to calculate the proper +short forms of the author and the title. In that case the BiBTeX +entries in question can be extended with shortauthor = {shorter +author name} and shorttitle = {short form of +title}.

+ + + +

Tips and tricks

+ +

I have some macros to format page ranges, that I use with this BiBTeX +style. They should be usable with other styles as well.

+ +

The macros are here: pageranges.sty

+ +

This file defined one user visible macro: \pages{}, +which will do the following transformations of the single argument:

+ +
+
\pages{N} +
becomes: p.~N +
\pages{N-} +
becomes: pp.~N~ff +
\pages{N-M} +
becomes: pp.~N--M +
\pages{N M} +
becomes: pp.~N M +
+ +

The last version is for cases like \pages{213, 345 +and~654} which will become pp.~213, 345 and~654.

+ + + +

I often have this little definition in a LaTeX style file. It makes +\cite do page ranges automatically and also puts the author +in the index (see the indexing macros).

+ +
+
+%% Automatically fix page ranges in citations and index author
+\let\RS@citex\@citex
+\def\@citex[#1]#2{\I@indexonly-{#2}\RS@citex[\pages{#1}]{#2}}
+
+
+ + + + + +

Comments

+ + +

If you have comments, please write me.

+ + + + + diff --git a/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.txt b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.txt new file mode 100644 index 00000000000..cfd51dcee57 --- /dev/null +++ b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.txt @@ -0,0 +1,151 @@ + + Inline bibliography style + + I want to have by BiBTeX generated references inlined in footnotes + rather than the very terse references BiBTeX generates by default, so + I hacked together a BiBTeX style to do that. These macros are not + polished or in the form of a proper distribution, but I have used them + with succes myself. + + The following discription have been made in haste. I will document it + better when I have the time (RSN :-). + + There are two files: [1]inlinebib.sty and [2]indexing.bst. + +The idea + + This works just like any other BiBTeX style. It will still generate + the bibliography at the end of the document, but it will also store + all the entries in the .aux files, so they can be inlined in the + following latex run. + + The first time a citation is made using \cite the complete + bibliography entry is inserted. The following citations to the same + entry will generate a short form, with only authors last name and a + shortened title, followed by a "cit.". If the same bibliography entry + is cited several times in a row, the text will only be "ibid.". + + Citations of this form are designed to be used in footnotes. + + A little example migth be appropriate (don't we all love + screenshots!). + + Footnotes from page one: + [Example 1] + + Footnotes from page two: + [Example 2] + + (the overstrike problem is courtesy of xdvi(1)) + + It is not possible to avoid having the complete bibliography at the + end of the document. The macros simply won't work without it. If you + don't need it, just don't print it. + +Usage + + Formalities + + To use these macros put the file inlinebib.sty in your LaTeX search + path and inlinebib.bst in your BiBTeX style search path and then put + the line: + +\usepackage{inlinebib} + + in the preamble of your document. + + Other commands have to be added at the point where you want the + bibliography to appear, usually at the end of the document. To tell + BiBTeX to use the inlinebib style, you have to use bibliographystyle: + +\bibliographystyle{inlinebib} + + Often I add a leading explanation to the bibliography with the + \bibliographycomment macro. That is: + +\bibliographycomment{This bibliography ...} + + The actual index is produced by the \bibliography macro. Here you have + to specify which BiBTeX databases you want to use. + +\bibliography{file ...} + + These were all the formalities. + + Doing citations + + When writing, just make citations as usual. Remember that these macros + can produce very verbose references, and they are intended for + footnotes. + + The default implementation of \cite allows several bibliography + entries to be cited. This version allows only one at a time. It still + supports the optional argument, which should be a page reference + within the cited text. + + There are a few additional macros available. \fullycite forces a + reference in the long form, \shortcite forces the short form, and + \noibid disables the generation "ibid." references for the next + citation (this can for example be used at the end of each chapter). + + To force later citations for certain entries to be either long or + short, the macros \fullcitenext{} and \shortcitenext{} can be used. + The single argument is a comma separated list of BiBTeX labels that + should be either long or short the next time they are cited. E.g., the + code \fullcitenext{book1, book2} will cause LaTeX to forget that the + two references might have been seen earlier and they will be handled + as if they haven't be cited yet. + + The BiBTeX databases + + This style does not require special changes to the BiBTeX databases. + + Sometimes the BiBTeX style doesn't manage to calculate the proper + short forms of the author and the title. In that case the BiBTeX + entries in question can be extended with shortauthor = {shorter author + name} and shorttitle = {short form of title}. + +Tips and tricks + + I have some macros to format page ranges, that I use with this BiBTeX + style. They should be usable with other styles as well. + + The macros are here: [3]pageranges.sty + + This file defined one user visible macro: \pages{}, which will do the + following transformations of the single argument: + + \pages{N} + becomes: p.~N + + \pages{N-} + becomes: pp.~N~ff + + \pages{N-M} + becomes: pp.~N--M + + \pages{N M} + becomes: pp.~N M + + The last version is for cases like \pages{213, 345 and~654} which will + become pp.~213, 345 and~654. + + I often have this little definition in a LaTeX style file. It makes + \cite do page ranges automatically and also puts the author in the + index (see [4]the indexing macros). + +%% Automatically fix page ranges in citations and index author +\let\RS@citex\@citex +\def\@citex[#1]#2{\I@indexonly-{#2}\RS@citex[\pages{#1}]{#2}} + +Comments + + If you have comments, please [5]write me. + +References + + 1. http://www.seindal.dk/rene/software/TeX/inlinebib.sty + 2. http://www.seindal.dk/rene/software/TeX/inlinebib.bst + 3. http://www.seindal.dk/rene/software/TeX/pageranges.sty + 4. http://www.seindal.dk/rene/software/TeX/indexing.htm + 5. mailto:rene@seindal.dk?Subject=Inlinebibmacros diff --git a/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib1.gif b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib1.gif new file mode 100644 index 00000000000..6bcbbd0c8c3 Binary files /dev/null and b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib1.gif differ diff --git a/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib2.gif b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib2.gif new file mode 100644 index 00000000000..8aaec961c0f Binary files /dev/null and b/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib2.gif differ diff --git a/Master/texmf-dist/doc/latex/inlinebib/MANIFEST b/Master/texmf-dist/doc/latex/inlinebib/MANIFEST deleted file mode 100644 index 2b956db92e7..00000000000 --- a/Master/texmf-dist/doc/latex/inlinebib/MANIFEST +++ /dev/null @@ -1,7 +0,0 @@ -inlinebib.bst -inlinebib.htm -inlinebib.sty -inlinebib.txt -inlinebib1.gif -inlinebib2.gif -pageranges.sty diff --git a/Master/texmf-dist/doc/latex/inlinebib/inlinebib.htm b/Master/texmf-dist/doc/latex/inlinebib/inlinebib.htm deleted file mode 100644 index 07619130bd1..00000000000 --- a/Master/texmf-dist/doc/latex/inlinebib/inlinebib.htm +++ /dev/null @@ -1,202 +0,0 @@ - - - -René Seindal - Software - Inline bibliography style - - - -

Inline bibliography style

- -

I want to have by BiBTeX generated references inlined in footnotes -rather than the very terse references BiBTeX generates by default, so I -hacked together a BiBTeX style to do that. These macros are not -polished or in the form of a proper distribution, but I have used them -with succes myself.

- -

The following discription have been made in haste. I will document -it better when I have the time (RSN :-).

- -

There are two files: inlinebib.sty and indexing.bst.

- - -

The idea

- -

This works just like any other BiBTeX style. It will still generate -the bibliography at the end of the document, but it will also store all -the entries in the .aux files, so they can be inlined in -the following latex run.

- -

The first time a citation is made using \cite the -complete bibliography entry is inserted. The following citations to the -same entry will generate a short form, with only authors last name and a -shortened title, followed by a "cit.". If the same bibliography -entry is cited several times in a row, the text will only be -"ibid.".

- -

Citations of this form are designed to be used in footnotes.

- -

A little example migth be appropriate (don't we all love -screenshots!).

- -

- - - - - - -
-

Footnotes from page one:

-[Example 1] -
-

Footnotes from page two:

-[Example 2] -
- -(the overstrike problem is courtesy of xdvi(1)) -

- -

It is not possible to avoid having the complete bibliography at the -end of the document. The macros simply won't work without it. If you -don't need it, just don't print it.

- - - -

Usage

- -

Formalities

- -

To use these macros put the file inlinebib.sty in your -LaTeX search path and inlinebib.bst in your BiBTeX style -search path and then put the line:

- -
-
\usepackage{inlinebib}
-
- -

in the preamble of your document.

- -

Other commands have to be added at the point where you want the -bibliography to appear, usually at the end of the document. To tell -BiBTeX to use the inlinebib style, you have to use -bibliographystyle: - -

-
-\bibliographystyle{inlinebib}
-
-
- -

Often I add a leading explanation to the bibliography with the -\bibliographycomment macro. That is:

- -
-
-\bibliographycomment{This bibliography ...}
-
-
- -

The actual index is produced by the \bibliography -macro. Here you have to specify which BiBTeX databases you want to use.

- -
-
-\bibliography{file ...}
-
-
- -

These were all the formalities.

- - -

Doing citations

- -

When writing, just make citations as usual. Remember that these -macros can produce very verbose references, and they are intended for -footnotes.

- -

The default implementation of \cite allows several -bibliography entries to be cited. This version allows only one at a -time. It still supports the optional argument, which should be a page -reference within the cited text.

- -

There are a few additional macros available. \fullycite -forces a reference in the long form, \shortcite forces -the short form, and \noibid disables the generation -"ibid." references for the next citation (this can for example be -used at the end of each chapter).

- -

To force later citations for certain entries to be either long or -short, the macros \fullcitenext{} and -\shortcitenext{} can be used. The single argument is a -comma separated list of BiBTeX labels that should be either long or -short the next time they are cited. E.g., the code -\fullcitenext{book1, book2} will cause LaTeX to forget that -the two references might have been seen earlier and they will be handled -as if they haven't be cited yet.

- - -

The BiBTeX databases

- -

This style does not require special changes to the BiBTeX -databases.

- -

Sometimes the BiBTeX style doesn't manage to calculate the proper -short forms of the author and the title. In that case the BiBTeX -entries in question can be extended with shortauthor = {shorter -author name} and shorttitle = {short form of -title}.

- - - -

Tips and tricks

- -

I have some macros to format page ranges, that I use with this BiBTeX -style. They should be usable with other styles as well.

- -

The macros are here: pageranges.sty

- -

This file defined one user visible macro: \pages{}, -which will do the following transformations of the single argument:

- -
-
\pages{N} -
becomes: p.~N -
\pages{N-} -
becomes: pp.~N~ff -
\pages{N-M} -
becomes: pp.~N--M -
\pages{N M} -
becomes: pp.~N M -
- -

The last version is for cases like \pages{213, 345 -and~654} which will become pp.~213, 345 and~654.

- - - -

I often have this little definition in a LaTeX style file. It makes -\cite do page ranges automatically and also puts the author -in the index (see the indexing macros).

- -
-
-%% Automatically fix page ranges in citations and index author
-\let\RS@citex\@citex
-\def\@citex[#1]#2{\I@indexonly-{#2}\RS@citex[\pages{#1}]{#2}}
-
-
- - - - - -

Comments

- - -

If you have comments, please write me.

- - - - - diff --git a/Master/texmf-dist/doc/latex/inlinebib/inlinebib.txt b/Master/texmf-dist/doc/latex/inlinebib/inlinebib.txt deleted file mode 100644 index cfd51dcee57..00000000000 --- a/Master/texmf-dist/doc/latex/inlinebib/inlinebib.txt +++ /dev/null @@ -1,151 +0,0 @@ - - Inline bibliography style - - I want to have by BiBTeX generated references inlined in footnotes - rather than the very terse references BiBTeX generates by default, so - I hacked together a BiBTeX style to do that. These macros are not - polished or in the form of a proper distribution, but I have used them - with succes myself. - - The following discription have been made in haste. I will document it - better when I have the time (RSN :-). - - There are two files: [1]inlinebib.sty and [2]indexing.bst. - -The idea - - This works just like any other BiBTeX style. It will still generate - the bibliography at the end of the document, but it will also store - all the entries in the .aux files, so they can be inlined in the - following latex run. - - The first time a citation is made using \cite the complete - bibliography entry is inserted. The following citations to the same - entry will generate a short form, with only authors last name and a - shortened title, followed by a "cit.". If the same bibliography entry - is cited several times in a row, the text will only be "ibid.". - - Citations of this form are designed to be used in footnotes. - - A little example migth be appropriate (don't we all love - screenshots!). - - Footnotes from page one: - [Example 1] - - Footnotes from page two: - [Example 2] - - (the overstrike problem is courtesy of xdvi(1)) - - It is not possible to avoid having the complete bibliography at the - end of the document. The macros simply won't work without it. If you - don't need it, just don't print it. - -Usage - - Formalities - - To use these macros put the file inlinebib.sty in your LaTeX search - path and inlinebib.bst in your BiBTeX style search path and then put - the line: - -\usepackage{inlinebib} - - in the preamble of your document. - - Other commands have to be added at the point where you want the - bibliography to appear, usually at the end of the document. To tell - BiBTeX to use the inlinebib style, you have to use bibliographystyle: - -\bibliographystyle{inlinebib} - - Often I add a leading explanation to the bibliography with the - \bibliographycomment macro. That is: - -\bibliographycomment{This bibliography ...} - - The actual index is produced by the \bibliography macro. Here you have - to specify which BiBTeX databases you want to use. - -\bibliography{file ...} - - These were all the formalities. - - Doing citations - - When writing, just make citations as usual. Remember that these macros - can produce very verbose references, and they are intended for - footnotes. - - The default implementation of \cite allows several bibliography - entries to be cited. This version allows only one at a time. It still - supports the optional argument, which should be a page reference - within the cited text. - - There are a few additional macros available. \fullycite forces a - reference in the long form, \shortcite forces the short form, and - \noibid disables the generation "ibid." references for the next - citation (this can for example be used at the end of each chapter). - - To force later citations for certain entries to be either long or - short, the macros \fullcitenext{} and \shortcitenext{} can be used. - The single argument is a comma separated list of BiBTeX labels that - should be either long or short the next time they are cited. E.g., the - code \fullcitenext{book1, book2} will cause LaTeX to forget that the - two references might have been seen earlier and they will be handled - as if they haven't be cited yet. - - The BiBTeX databases - - This style does not require special changes to the BiBTeX databases. - - Sometimes the BiBTeX style doesn't manage to calculate the proper - short forms of the author and the title. In that case the BiBTeX - entries in question can be extended with shortauthor = {shorter author - name} and shorttitle = {short form of title}. - -Tips and tricks - - I have some macros to format page ranges, that I use with this BiBTeX - style. They should be usable with other styles as well. - - The macros are here: [3]pageranges.sty - - This file defined one user visible macro: \pages{}, which will do the - following transformations of the single argument: - - \pages{N} - becomes: p.~N - - \pages{N-} - becomes: pp.~N~ff - - \pages{N-M} - becomes: pp.~N--M - - \pages{N M} - becomes: pp.~N M - - The last version is for cases like \pages{213, 345 and~654} which will - become pp.~213, 345 and~654. - - I often have this little definition in a LaTeX style file. It makes - \cite do page ranges automatically and also puts the author in the - index (see [4]the indexing macros). - -%% Automatically fix page ranges in citations and index author -\let\RS@citex\@citex -\def\@citex[#1]#2{\I@indexonly-{#2}\RS@citex[\pages{#1}]{#2}} - -Comments - - If you have comments, please [5]write me. - -References - - 1. http://www.seindal.dk/rene/software/TeX/inlinebib.sty - 2. http://www.seindal.dk/rene/software/TeX/inlinebib.bst - 3. http://www.seindal.dk/rene/software/TeX/pageranges.sty - 4. http://www.seindal.dk/rene/software/TeX/indexing.htm - 5. mailto:rene@seindal.dk?Subject=Inlinebibmacros diff --git a/Master/texmf-dist/doc/latex/inlinebib/inlinebib1.gif b/Master/texmf-dist/doc/latex/inlinebib/inlinebib1.gif deleted file mode 100644 index 6bcbbd0c8c3..00000000000 Binary files a/Master/texmf-dist/doc/latex/inlinebib/inlinebib1.gif and /dev/null differ diff --git a/Master/texmf-dist/doc/latex/inlinebib/inlinebib2.gif b/Master/texmf-dist/doc/latex/inlinebib/inlinebib2.gif deleted file mode 100644 index 8aaec961c0f..00000000000 Binary files a/Master/texmf-dist/doc/latex/inlinebib/inlinebib2.gif and /dev/null differ diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index b64c9ccdb21..328824922b4 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -744,6 +744,7 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'tamethebeast',"&MAKEtamethebeast", 'tamil-omega', "die 'skipping, supports nonfree ISM fonts'", #"&MAKEflatten", 'taylor', "die 'skipping, nonfree'", + 'tclldoc', "die 'skipping, use tcldoc'", 'tds', "die 'skipping, do by hand from http://tug.org/tds'", 'template', "die 'skipping, already part of xpackages'", 'tengwarscript',"&MAKEflatten", diff --git a/Master/tlpkg/tlpsrc/tcldoc.tlpsrc b/Master/tlpkg/tlpsrc/tcldoc.tlpsrc index e69de29bb2d..bb71b1a3f65 100644 --- a/Master/tlpkg/tlpsrc/tcldoc.tlpsrc +++ b/Master/tlpkg/tlpsrc/tcldoc.tlpsrc @@ -0,0 +1 @@ +catalogue tclldoc -- cgit v1.2.3