diff options
Diffstat (limited to 'Master/texmf-dist/doc')
42 files changed, 289 insertions, 35 deletions
diff --git a/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications-graph.bib b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications-graph.bib new file mode 100644 index 00000000000..2e781179cc6 --- /dev/null +++ b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications-graph.bib @@ -0,0 +1,53 @@ +% A few examples from the MetaPost graph manual that Alan was updating +% at the time we wrote the new bib code. Watch how uppercase is used here +% as well as curly braces instead of double quote characters, + +@INCOLLECTION{Bentley1990, + author = {Bentley, Jon L. and Kernighan, Brian W.}, + year = {1990}, + title = {Grap—A language for Typesetting Graphs}, + booktitle = {Unix Research System Papers}, + publisher = {{AT\&T} Bell Laboratories}, + volume = {{II}}, + pages = {109–146}, + address = {Murray Hill, New Jersey}, + edition = {Tenth}, +} + +@BOOK{Cleveland1985, + author = {Cleveland, William S.}, + year = {1985, revised 1994}, + title = {The Elements of Graphing Data}, + publisher = {Hobart Press}, + address = {Summit, New Jersey}, +} + +@BOOK{Cleveland1993, + author = {Cleveland, William S.}, + year = {1993}, + title = {Visualizing Data}, + publisher = {Hobart Press}, + address = {Summit, New Jersey}, +} + +@ARTICLE{Cleveland1993a, + author = {Cleveland, William S.}, + year = {1993}, + title = {A Model for Studying Display Methods of StatisticalGraphics (with + discussion)}, + journal = {Journal of Computational and Statistical Graphics}, + volume = {2}, + pages = {323–343}, + number = {4}, + doi = {10.1080/10618600.1993.10474616}, + eprint = {http://www.tandfonline.com/doi/pdf/10.1080/10618600.1993.10474616}, + url = {http://www.tandfonline.com/doi/abs/10.1080/10618600.1993.10474616}, +} + +@BOOK{Tufte1983, + author = {Tufte, Edward R.}, + year = {1983}, + title = {Visual Display of Quantitative Information}, + publisher = {Graphics Press}, + address = {Box 430, Cheshire, Connecticut 06410}, +} diff --git a/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.bib b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.bib index e94f43202fe..9e9984bfc5b 100644 --- a/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.bib +++ b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.bib @@ -1,3 +1,5 @@ +% A few silly but simple examples. + @book{demo-001, author = "Hans Hagen", title = "\BIBTEX, the \CONTEXT\ way", @@ -18,7 +20,7 @@ @book{demo-004, author = "Luigi Scarso", - title = "Designing high speed trains", + title = "Designing high speed trains properly!", year = "2021", comment = "still to be published", } diff --git a/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.pdf b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.pdf Binary files differnew file mode 100644 index 00000000000..2aadba29d2e --- /dev/null +++ b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.pdf diff --git a/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.tex b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.tex index 0a81467fca4..c5bdab14a27 100644 --- a/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.tex +++ b/Master/texmf-dist/doc/context/manuals/allkind/mkiv-publications.tex @@ -1,6 +1,9 @@ % language=uk -% \setupbtxrendering[continue=yes] + +\setupbtxlistvariant [interaction=start] +\setupbtxcitevariant [interaction=start] + % \btxfield{manipulator_a->manipulator_b->fieldname} % engine=luajittex @@ -8,16 +11,7 @@ % criterium: all + sorttype=cite => citex before rest % criterium: all + sorttype=database => database order % criterium: used -% % numbering: label, short, indexinlist, indexused -% -% maybeyear -% -% \cite[data][whatever] - -% \showframe - -% \usemodule[lua-checkheads] \usemodule[abr-02] \usemodule[set-11] @@ -1282,6 +1276,208 @@ suffix, you can do this: \stopchapter +\startchapter[title=Searching] + +Finding the right key in a database can be a pain. On the other hand, asking for +a wildcard also makes no sense. Nevertheless we provide a mechanism for matching +a query. For this we load a small bibliographic database: + +\startbuffer +\usebtxdataset[graph][mkiv-publications-graph.bib] +\stopbuffer + +\typebuffer \getbuffer + +We could switch to this base using: + +\starttyping +\setbtxdataset[graph] +\stoptyping + +but instead we will use a prefix. For instance, if we have this in our source: + +\startbuffer +searching give a few hits, so we get: \cite [ graph :: match ( author:cleveland and +year:1993 ) ]. +\stopbuffer + +\typebuffer + +We will get: \quotation {\inlinebuffer}. Of course this assumes that we also +typeset a list of referred to references, so let's do that: + +\startbuffer +\definebtxrendering[graph][dataset=graph] +\placebtxrendering[graph][criterium=chapter] +\stopbuffer + +\typebuffer + +We get: + +\blank \getbuffer \blank + +Let's look in more detail at the \type {\cite} command. In order to distinguish +efficiently between a normal reference and a more clever one, we use the \type +{match} keyword: + +\startbuffer +dataset::match(query) +dataset :: match ( query ) +\stopbuffer + +The handler is rather tolerant for spaces: + +\startbuffer +dataset :: match ( query ) +\stopbuffer + +Which is handy if you have long queries that wrap around in the source code. Of +course the \type {dataset::} prefix is optional in which case the current dataset +is taken. + +A query eventually becomes a \LUA\ expression so you can use helpers to achieve +your goal. As a convenience there are some shortcuts to access fields. The +following examples demonstrate this: + +\starttyping +match(author:hagen) +match(author:hagen and author:hoekwater and year:1990-2010) +match(author:"Bogusław Jackowski") +match(author:"Bogusław Jackowski" and (tonumber(field:year) or 0) > 2000) +\stoptyping + +You can use quotes when spaces are involved. Of course you can use other +characters that the basic alphabet. Ranges (of numbers) are recognized. String +lookups are partial and case insensitive. \footnote {At the time of this +writing, may 2014, this mechanism is still somewhat experimental.} + +\startbuffer +Wildcards: \cite [graph::match(author:cleve)]. +\stopbuffer + +\typebuffer + +We get three entries: \quotation {\inlinebuffer}. + +% To be checked: are indeed three entries found? + +% Match : \cite [match(author:cleveland and year:1993)] \par + +\stopchapter + +\startchapter[title=Combining] + +It is possible to refer to two sources in one go. In that case the list will have one +entry for two bibliographic entries. + +\startbuffer +Let's save numbers and refer to Bentley and Tufte with one: \cite [graph :: +Bentley1990 + Tufte1983]! +\stopbuffer + +\typebuffer + +Indeed we get one number only: \quotation {\inlinebuffer}. + +\startbuffer +\setupbtxrendering[graph][continue=yes,separator={; }] +\placebtxrendering[graph][criterium=chapter] +\stopbuffer + +We produce the (local) list with: + +\typebuffer + +which shows the two entries pasted together: + +\setupbtxrendering[separator=] + +\blank \getbuffer \blank + +As demonstration we also specified the separator although that one is already +set up by default. + +You can combine citations with additional text before and|/|or after it. This can +be done per citation. This feature is of course not that useful, as one can +put text before and after a citation anyway. + +\startbuffer +foo bar \citation [before=<<,after=>>] [graph::Cleveland1993] foo bar +\stopbuffer + +\typebuffer + +Gives: + +\blank \getbuffer \blank + +\stopchapter + +\startchapter[title=Summary] + +\start +\setbtxdataset[graph] + +There are a lot of combinations possible and not all of them make sense. +Nevertheless we show most of them here. (There will be more.) + +\startbuffer[samples] +Cleveland : \cite [Cleveland1993,Cleveland1985,Cleveland1993a] \par +Tufte : \cite [Tufte1983] \par +Bentley : \cite [Bentley1990] \par +All : \cite [Tufte1983,Cleveland1993,Bentley1990,Cleveland1985, + Cleveland1993a] \par +\stopbuffer + +\starttexdefinition BibSampleSet #1#2 + \subsubsubject{alternative=#1 / compress=#2} + \startpacked + \setupbtxcitevariant[#1][compress=#2] + \setupbtxcitevariant[alternative=#1] + \getbuffer[samples] + \stoppacked +\stoptexdefinition + +\BibSampleSet{author} {no} +\BibSampleSet{authoryear} {no} +\BibSampleSet{authoryear} {yes} +\BibSampleSet{authoryears}{no} +\BibSampleSet{authoryears}{yes} +\BibSampleSet{authornum} {no} +\BibSampleSet{authornum} {yes} +\BibSampleSet{year} {no} +\BibSampleSet{year} {yes} +\BibSampleSet{short} {no} +\BibSampleSet{serial} {no} +\BibSampleSet{serial} {yes} +\BibSampleSet{tag} {no} +\BibSampleSet{key} {no} +\BibSampleSet{doi} {no} +\BibSampleSet{url} {no} +\BibSampleSet{type} {no} +\BibSampleSet{category} {no} +\BibSampleSet{page} {no} +\BibSampleSet{num} {no} +\BibSampleSet{num} {yes} + +\startbuffer +\setupbtxrendering[graph][continue=yes] +\placebtxrendering[graph][criterium=chapter] +\stopbuffer + +We produce a local list with: + +\typebuffer + +and get a list with (new) entries: + +\blank \getbuffer \blank + +\stop + +\stopchapter + \startchapter[title=Notes] The move from external \BIBTEX\ processing to internal processing has the diff --git a/Master/texmf-dist/doc/context/manuals/allkind/publications-en.xml b/Master/texmf-dist/doc/context/manuals/allkind/publications-en.xml index ea577ccf4b7..002b425bbdd 100644 --- a/Master/texmf-dist/doc/context/manuals/allkind/publications-en.xml +++ b/Master/texmf-dist/doc/context/manuals/allkind/publications-en.xml @@ -139,6 +139,9 @@ <cd:constant type="cd:name"/> </cd:keywords> <cd:assignments n="2"> + <cd:parameter name="separator"> + <cd:constant type="cd:text"/> + </cd:parameter> <cd:parameter name="namesep"> <cd:constant type="cd:text"/> </cd:parameter> diff --git a/Master/texmf-dist/doc/man/man1/context.man1.pdf b/Master/texmf-dist/doc/man/man1/context.man1.pdf Binary files differindex d78f886ccc7..3b0178d850f 100644 --- a/Master/texmf-dist/doc/man/man1/context.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/context.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/luatools.man1.pdf b/Master/texmf-dist/doc/man/man1/luatools.man1.pdf Binary files differindex 91ee4d558e0..00a52e80762 100644 --- a/Master/texmf-dist/doc/man/man1/luatools.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/luatools.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-babel.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-babel.man1.pdf Binary files differindex f18234baca7..367b9e11ee9 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-babel.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-babel.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-base.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-base.man1.pdf Binary files differindex b0ec533b2b5..938d7aa8cee 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-base.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-base.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf Binary files differindex bf622bd9117..1fe1ede1ac4 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-bibtex.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-cache.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-cache.man1.pdf Binary files differindex 2b489041b38..2bdcc36272d 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-cache.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-cache.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-chars.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-chars.man1.pdf Binary files differindex 7f3b8c2b16c..c9cf00d958e 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-chars.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-chars.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-check.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-check.man1.pdf Binary files differindex 627d361d023..607068ad28b 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-check.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-check.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-colors.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-colors.man1.pdf Binary files differindex d699cdb61f4..bb3997e59c3 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-colors.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-colors.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-context.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-context.man1.pdf Binary files differindex ee44329a245..53cbdcf4065 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-context.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-context.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-epub.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-epub.man1.pdf Binary files differindex f045c596255..13da4a4ffad 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-epub.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-epub.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-fcd.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-fcd.man1.pdf Binary files differindex d3e583aabfe..5740ac3e0f7 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-fcd.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-fcd.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-flac.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-flac.man1.pdf Binary files differindex a37bcad6a46..71bc81e26ec 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-flac.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-flac.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-fonts.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-fonts.man1.pdf Binary files differindex ecef6e3b8eb..57ded42f8e0 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-fonts.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-fonts.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-grep.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-grep.man1.pdf Binary files differindex 73c6456eb36..ee7abb3a69c 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-grep.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-grep.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-interface.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-interface.man1.pdf Binary files differindex 09b15d0c598..2d0e1805b8f 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-interface.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-interface.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-metapost.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-metapost.man1.pdf index a90e4e17a3f..72b26f17280 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-metapost.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-metapost.man1.pdf @@ -66,12 +66,12 @@ endobj <?adobe-xap-filters esc="CRLF"?> <x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> -<rdf:Description rdf:about='uuid:01a555dd-1888-11ef-0000-aa309aaa098b' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 9.10'/> -<rdf:Description rdf:about='uuid:01a555dd-1888-11ef-0000-aa309aaa098b' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2014-05-21T00:09:48+02:00</xmp:ModifyDate> -<xmp:CreateDate>2014-05-21T00:09:48+02:00</xmp:CreateDate> +<rdf:Description rdf:about='uuid:8ad492bf-1951-11ef-0000-aa309aaa098b' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 9.10'/> +<rdf:Description rdf:about='uuid:8ad492bf-1951-11ef-0000-aa309aaa098b' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2014-05-22T00:12:27+02:00</xmp:ModifyDate> +<xmp:CreateDate>2014-05-22T00:12:27+02:00</xmp:CreateDate> <xmp:CreatorTool>groff version 1.22.2</xmp:CreatorTool></rdf:Description> -<rdf:Description rdf:about='uuid:01a555dd-1888-11ef-0000-aa309aaa098b' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:01a555dd-1888-11ef-0000-aa309aaa098b'/> -<rdf:Description rdf:about='uuid:01a555dd-1888-11ef-0000-aa309aaa098b' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>Untitled</rdf:li></rdf:Alt></dc:title></rdf:Description> +<rdf:Description rdf:about='uuid:8ad492bf-1951-11ef-0000-aa309aaa098b' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:8ad492bf-1951-11ef-0000-aa309aaa098b'/> +<rdf:Description rdf:about='uuid:8ad492bf-1951-11ef-0000-aa309aaa098b' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>Untitled</rdf:li></rdf:Alt></dc:title></rdf:Description> </rdf:RDF> </x:xmpmeta> @@ -81,8 +81,8 @@ endstream endobj 2 0 obj <</Producer(GPL Ghostscript 9.10) -/CreationDate(D:20140521000948+02'00') -/ModDate(D:20140521000948+02'00') +/CreationDate(D:20140522001227+02'00') +/ModDate(D:20140522001227+02'00') /Creator(groff version 1.22.2)>>endobj xref 0 15 @@ -103,7 +103,7 @@ xref 0000001681 00000 n trailer << /Size 15 /Root 1 0 R /Info 2 0 R -/ID [<E1B972BB336587C6DF600EAE285207C0><E1B972BB336587C6DF600EAE285207C0>] +/ID [<32A445A5356F79DF70ABA17EEF1C9CAF><32A445A5356F79DF70ABA17EEF1C9CAF>] >> startxref 3258 diff --git a/Master/texmf-dist/doc/man/man1/mtx-metatex.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-metatex.man1.pdf Binary files differindex 79f2ab58bf3..99c6c46da98 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-metatex.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-metatex.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-modules.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-modules.man1.pdf Binary files differindex 91c5282f4a7..b9eefbace0f 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-modules.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-modules.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-package.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-package.man1.pdf Binary files differindex a506a94363e..5188cc37235 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-package.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-package.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-patterns.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-patterns.man1.pdf Binary files differindex 8abf63ba8cb..1bbcbdf472e 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-patterns.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-patterns.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-pdf.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-pdf.man1.pdf Binary files differindex e4b2bbbf85d..edef4498c44 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-pdf.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-pdf.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-plain.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-plain.man1.pdf Binary files differindex af3780f8525..9e00aa8d0f0 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-plain.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-plain.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-profile.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-profile.man1.pdf index b230afcbe3c..99036d2b310 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-profile.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-profile.man1.pdf @@ -72,12 +72,12 @@ endobj <?adobe-xap-filters esc="CRLF"?> <x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> -<rdf:Description rdf:about='uuid:007428dd-1888-11ef-0000-d374a6315311' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 9.10'/> -<rdf:Description rdf:about='uuid:007428dd-1888-11ef-0000-d374a6315311' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2014-05-21T00:09:46+02:00</xmp:ModifyDate> -<xmp:CreateDate>2014-05-21T00:09:46+02:00</xmp:CreateDate> +<rdf:Description rdf:about='uuid:89a365bf-1951-11ef-0000-d374a6315311' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 9.10'/> +<rdf:Description rdf:about='uuid:89a365bf-1951-11ef-0000-d374a6315311' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2014-05-22T00:12:25+02:00</xmp:ModifyDate> +<xmp:CreateDate>2014-05-22T00:12:25+02:00</xmp:CreateDate> <xmp:CreatorTool>groff version 1.22.2</xmp:CreatorTool></rdf:Description> -<rdf:Description rdf:about='uuid:007428dd-1888-11ef-0000-d374a6315311' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:007428dd-1888-11ef-0000-d374a6315311'/> -<rdf:Description rdf:about='uuid:007428dd-1888-11ef-0000-d374a6315311' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>Untitled</rdf:li></rdf:Alt></dc:title></rdf:Description> +<rdf:Description rdf:about='uuid:89a365bf-1951-11ef-0000-d374a6315311' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:89a365bf-1951-11ef-0000-d374a6315311'/> +<rdf:Description rdf:about='uuid:89a365bf-1951-11ef-0000-d374a6315311' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>Untitled</rdf:li></rdf:Alt></dc:title></rdf:Description> </rdf:RDF> </x:xmpmeta> @@ -87,8 +87,8 @@ endstream endobj 2 0 obj <</Producer(GPL Ghostscript 9.10) -/CreationDate(D:20140521000946+02'00') -/ModDate(D:20140521000946+02'00') +/CreationDate(D:20140522001225+02'00') +/ModDate(D:20140522001225+02'00') /Creator(groff version 1.22.2)>>endobj xref 0 16 @@ -110,7 +110,7 @@ xref 0000001641 00000 n trailer << /Size 16 /Root 1 0 R /Info 2 0 R -/ID [<3E7AE6DD3A7C6C87FEF6964F15402F95><3E7AE6DD3A7C6C87FEF6964F15402F95>] +/ID [<497FDFBF3AC5C5E4F45B3F2151C02DE4><497FDFBF3AC5C5E4F45B3F2151C02DE4>] >> startxref 3218 diff --git a/Master/texmf-dist/doc/man/man1/mtx-rsync.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-rsync.man1.pdf Binary files differindex af873ebdcfe..e9edd1f6bbc 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-rsync.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-rsync.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-scite.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-scite.man1.pdf Binary files differindex fac32566bbf..d21f0dfb822 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-scite.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-scite.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-server.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-server.man1.pdf index eabad1e685a..3b25fdf1471 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-server.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-server.man1.pdf @@ -69,12 +69,12 @@ endobj <?adobe-xap-filters esc="CRLF"?> <x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'> -<rdf:Description rdf:about='uuid:023dec5d-1888-11ef-0000-ff8586dca178' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 9.10'/> -<rdf:Description rdf:about='uuid:023dec5d-1888-11ef-0000-ff8586dca178' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2014-05-21T00:09:49+02:00</xmp:ModifyDate> -<xmp:CreateDate>2014-05-21T00:09:49+02:00</xmp:CreateDate> +<rdf:Description rdf:about='uuid:8b6d293f-1951-11ef-0000-ff8586dca178' xmlns:pdf='http://ns.adobe.com/pdf/1.3/' pdf:Producer='GPL Ghostscript 9.10'/> +<rdf:Description rdf:about='uuid:8b6d293f-1951-11ef-0000-ff8586dca178' xmlns:xmp='http://ns.adobe.com/xap/1.0/'><xmp:ModifyDate>2014-05-22T00:12:28+02:00</xmp:ModifyDate> +<xmp:CreateDate>2014-05-22T00:12:28+02:00</xmp:CreateDate> <xmp:CreatorTool>groff version 1.22.2</xmp:CreatorTool></rdf:Description> -<rdf:Description rdf:about='uuid:023dec5d-1888-11ef-0000-ff8586dca178' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:023dec5d-1888-11ef-0000-ff8586dca178'/> -<rdf:Description rdf:about='uuid:023dec5d-1888-11ef-0000-ff8586dca178' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>Untitled</rdf:li></rdf:Alt></dc:title></rdf:Description> +<rdf:Description rdf:about='uuid:8b6d293f-1951-11ef-0000-ff8586dca178' xmlns:xapMM='http://ns.adobe.com/xap/1.0/mm/' xapMM:DocumentID='uuid:8b6d293f-1951-11ef-0000-ff8586dca178'/> +<rdf:Description rdf:about='uuid:8b6d293f-1951-11ef-0000-ff8586dca178' xmlns:dc='http://purl.org/dc/elements/1.1/' dc:format='application/pdf'><dc:title><rdf:Alt><rdf:li xml:lang='x-default'>Untitled</rdf:li></rdf:Alt></dc:title></rdf:Description> </rdf:RDF> </x:xmpmeta> @@ -84,8 +84,8 @@ endstream endobj 2 0 obj <</Producer(GPL Ghostscript 9.10) -/CreationDate(D:20140521000949+02'00') -/ModDate(D:20140521000949+02'00') +/CreationDate(D:20140522001228+02'00') +/ModDate(D:20140522001228+02'00') /Creator(groff version 1.22.2)>>endobj xref 0 15 @@ -106,7 +106,7 @@ xref 0000001722 00000 n trailer << /Size 15 /Root 1 0 R /Info 2 0 R -/ID [<EE857A3D70F39594E65ACF0B897E956E><EE857A3D70F39594E65ACF0B897E956E>] +/ID [<2593EB0586BFC7E6D76483C7D4887A8C><2593EB0586BFC7E6D76483C7D4887A8C>] >> startxref 3299 diff --git a/Master/texmf-dist/doc/man/man1/mtx-texworks.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-texworks.man1.pdf Binary files differindex 97c764bbc09..fa73abf244c 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-texworks.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-texworks.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-timing.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-timing.man1.pdf Binary files differindex 88b38de2dc1..d7ec423ff54 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-timing.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-timing.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-tools.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-tools.man1.pdf Binary files differindex 912cb439932..2758c3733bd 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-tools.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-tools.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-unzip.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-unzip.man1.pdf Binary files differindex 602ac434e95..60c0f734892 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-unzip.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-unzip.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-update.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-update.man1.pdf Binary files differindex 287e301ed28..c0fa77cdc64 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-update.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-update.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-watch.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-watch.man1.pdf Binary files differindex 5c58f5c98b8..7b4dcc05189 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-watch.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-watch.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtx-youless.man1.pdf b/Master/texmf-dist/doc/man/man1/mtx-youless.man1.pdf Binary files differindex ffa43a811ac..cbb3ad559ed 100644 --- a/Master/texmf-dist/doc/man/man1/mtx-youless.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtx-youless.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/mtxrun.man1.pdf b/Master/texmf-dist/doc/man/man1/mtxrun.man1.pdf Binary files differindex fb12823964b..914cbae3e10 100644 --- a/Master/texmf-dist/doc/man/man1/mtxrun.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/mtxrun.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/texexec.man1.pdf b/Master/texmf-dist/doc/man/man1/texexec.man1.pdf Binary files differindex 9d81d060ec4..7942cdf58f3 100644 --- a/Master/texmf-dist/doc/man/man1/texexec.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/texexec.man1.pdf diff --git a/Master/texmf-dist/doc/man/man1/texmfstart.man1.pdf b/Master/texmf-dist/doc/man/man1/texmfstart.man1.pdf Binary files differindex 68e57a382f3..7dfda7505ca 100644 --- a/Master/texmf-dist/doc/man/man1/texmfstart.man1.pdf +++ b/Master/texmf-dist/doc/man/man1/texmfstart.man1.pdf |