From 9dcff41c85a349150af4f2f593fecd7d06a1a7c3 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 16 Jun 2015 17:40:21 +0000 Subject: remove spurious non-comments for [nt]roff, old non-man-pages, etc. git-svn-id: svn://tug.org/texlive/trunk@37564 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/web2c/man/ChangeLog | 11 +++ Build/source/texk/web2c/man/Makefile.am | 14 +-- Build/source/texk/web2c/man/Makefile.in | 43 ++++----- Build/source/texk/web2c/man/aleph.man | 9 +- Build/source/texk/web2c/man/amslatex.min | 108 ----------------------- Build/source/texk/web2c/man/amstex.man | 7 +- Build/source/texk/web2c/man/bibtex.man | 7 +- Build/source/texk/web2c/man/dvitomp.man | 2 +- Build/source/texk/web2c/man/dvitype.man | 7 +- Build/source/texk/web2c/man/etex.man | 11 +-- Build/source/texk/web2c/man/gftodvi.man | 9 +- Build/source/texk/web2c/man/gftopk.man | 9 +- Build/source/texk/web2c/man/gftype.man | 9 +- Build/source/texk/web2c/man/initex.min | 147 ------------------------------- Build/source/texk/web2c/man/lamstex.min | 67 -------------- Build/source/texk/web2c/man/latex.man | 7 +- Build/source/texk/web2c/man/luatex.man | 4 +- Build/source/texk/web2c/man/mf.man | 11 ++- Build/source/texk/web2c/man/mft.man | 9 +- Build/source/texk/web2c/man/mpost.man | 9 +- Build/source/texk/web2c/man/ofm2opl.man | 2 +- Build/source/texk/web2c/man/opl2ofm.man | 2 +- Build/source/texk/web2c/man/ovf2ovp.man | 2 +- Build/source/texk/web2c/man/ovp2ovf.man | 2 +- Build/source/texk/web2c/man/patgen.man | 6 +- Build/source/texk/web2c/man/pdfetex.man | 11 +-- Build/source/texk/web2c/man/pdftex.man | 11 +-- Build/source/texk/web2c/man/pdftosrc.man | 7 +- Build/source/texk/web2c/man/pktogf.man | 9 +- Build/source/texk/web2c/man/pktype.man | 9 +- Build/source/texk/web2c/man/pltotf.man | 9 +- Build/source/texk/web2c/man/pooltype.man | 7 +- Build/source/texk/web2c/man/slitex.min | 39 -------- Build/source/texk/web2c/man/tangle.man | 9 +- Build/source/texk/web2c/man/tex.man | 11 +-- Build/source/texk/web2c/man/tftopl.man | 9 +- Build/source/texk/web2c/man/ttf2afm.man | 2 +- Build/source/texk/web2c/man/vftovp.man | 7 +- Build/source/texk/web2c/man/virtex.min | 81 ----------------- Build/source/texk/web2c/man/vptovf.man | 7 +- Build/source/texk/web2c/man/weave.man | 9 +- 41 files changed, 138 insertions(+), 613 deletions(-) delete mode 100644 Build/source/texk/web2c/man/amslatex.min delete mode 100644 Build/source/texk/web2c/man/initex.min delete mode 100644 Build/source/texk/web2c/man/lamstex.min delete mode 100644 Build/source/texk/web2c/man/slitex.min delete mode 100644 Build/source/texk/web2c/man/virtex.min (limited to 'Build/source/texk/web2c') diff --git a/Build/source/texk/web2c/man/ChangeLog b/Build/source/texk/web2c/man/ChangeLog index 1bb2d76f279..b4e4590103f 100644 --- a/Build/source/texk/web2c/man/ChangeLog +++ b/Build/source/texk/web2c/man/ChangeLog @@ -1,3 +1,14 @@ +2015-06-16 Karl Berry + + * *.man: remove spurious "for troff" and "for nroff" non-comments. + https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663157 + Report from Tom Yan, tex-live mail 2 Jun 2015 03:28:32. + Also replace pseudo-smallcaps M\s-2ETAFONT\s0 with standard "Metafont". + * *.min: remove these long-gone programs. + * Makefile.am (EXTRA_DIST): remove *.min. + (man1_links) [TEX]: include initex. + (man1_links) [MF]: include inimf. + 2015-04-27 Karl Berry * aleph.man, diff --git a/Build/source/texk/web2c/man/Makefile.am b/Build/source/texk/web2c/man/Makefile.am index 0e18f483836..7206959fc38 100644 --- a/Build/source/texk/web2c/man/Makefile.am +++ b/Build/source/texk/web2c/man/Makefile.am @@ -1,6 +1,6 @@ ## Makefile.am for the TeX Live subdirectory texk/web2c/man/ ## -## Copyright (C) 2009-2014 Peter Breitenlohner +## Copyright (C) 2009-2015 Peter Breitenlohner ## You may freely use, modify and/or distribute this file. ## man_sources = $(bootstrap_man_sources) @@ -20,11 +20,13 @@ web_man_sources = bibtex.man dvicopy.man dvitomp.man dvitype.man gftodvi.man \ if TEX man_sources += tex.man +man1_links += tex:initex endif TEX EXTRA_DIST += tex.man if MF man_sources += mf.man +man1_links += mf:inimf if MFN man1_links += mf:mf-nowin endif MFN @@ -87,13 +89,5 @@ install-data-hook: install-man1-links uninstall-hook: uninstall-man1-links -## Obsolete ? -## EXTRA_DIST += \ - amslatex.min \ - initex.min \ - lamstex.min \ - slitex.min \ - spell.add \ - virtex.min - + spell.add diff --git a/Build/source/texk/web2c/man/Makefile.in b/Build/source/texk/web2c/man/Makefile.in index b3019958529..6ff22b72a19 100644 --- a/Build/source/texk/web2c/man/Makefile.in +++ b/Build/source/texk/web2c/man/Makefile.in @@ -89,19 +89,21 @@ build_triplet = @build@ host_triplet = @host@ @WEB_TRUE@am__append_1 = $(web_man_sources) @TEX_TRUE@am__append_2 = tex.man -@MF_TRUE@am__append_3 = mf.man -@MFN_TRUE@@MF_TRUE@am__append_4 = mf:mf-nowin -@MP_TRUE@am__append_5 = mpost.man -@ETEX_TRUE@am__append_6 = etex.man -@PDFTEX_TRUE@am__append_7 = $(pdftex_man_sources) -@PDFTEX_TRUE@am__append_8 = pdftex:pdflatex -@LUATEX_TRUE@am__append_9 = luatex.man -@LUATEX_TRUE@am__append_10 = luatex:texlua luatex:texluac -@XETEX_TRUE@am__append_11 = # xetex.man -@OTANGLE_TRUE@am__append_12 = $(otangle_man_sources) -@OTANGLE_TRUE@am__append_13 = dvicopy:odvicopy dvitype:odvitype tangle:otangle -@ALEPH_TRUE@am__append_14 = aleph.man -@ALEPH_TRUE@am__append_15 = aleph:lamed +@TEX_TRUE@am__append_3 = tex:initex +@MF_TRUE@am__append_4 = mf.man +@MF_TRUE@am__append_5 = mf:inimf +@MFN_TRUE@@MF_TRUE@am__append_6 = mf:mf-nowin +@MP_TRUE@am__append_7 = mpost.man +@ETEX_TRUE@am__append_8 = etex.man +@PDFTEX_TRUE@am__append_9 = $(pdftex_man_sources) +@PDFTEX_TRUE@am__append_10 = pdftex:pdflatex +@LUATEX_TRUE@am__append_11 = luatex.man +@LUATEX_TRUE@am__append_12 = luatex:texlua luatex:texluac +@XETEX_TRUE@am__append_13 = # xetex.man +@OTANGLE_TRUE@am__append_14 = $(otangle_man_sources) +@OTANGLE_TRUE@am__append_15 = dvicopy:odvicopy dvitype:odvitype tangle:otangle +@ALEPH_TRUE@am__append_16 = aleph.man +@ALEPH_TRUE@am__append_17 = aleph:lamed subdir = man ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/web2c-disable.m4 \ @@ -429,19 +431,18 @@ wlibs = @wlibs@ x_ext_lib = @x_ext_lib@ x_tool_libs = @x_tool_libs@ man_sources = $(bootstrap_man_sources) $(am__append_1) $(am__append_2) \ - $(am__append_3) $(am__append_5) $(am__append_6) \ - $(am__append_7) $(am__append_9) $(am__append_11) \ - $(am__append_12) $(am__append_14) $(misc_man_sources) + $(am__append_4) $(am__append_7) $(am__append_8) \ + $(am__append_9) $(am__append_11) $(am__append_13) \ + $(am__append_14) $(am__append_16) $(misc_man_sources) EXTRA_DIST = $(bootstrap_man_sources) $(web_man_sources) tex.man \ mf.man mpost.man etex.man $(pdftex_man_sources) luatex.man \ - $(otangle_man_sources) aleph.man $(misc_man_sources) \ - amslatex.min initex.min lamstex.min slitex.min spell.add \ - virtex.min + $(otangle_man_sources) aleph.man $(misc_man_sources) spell.add bootstrap_man_sources = ctie.man cweb.man tangle.man tie.man # Symlinks within $(man1dir): FILE:LINK indicates LINK.1->FILE.1 -man1_links = cweb:ctangle cweb:cweave $(am__append_4) $(am__append_8) \ - $(am__append_10) $(am__append_13) $(am__append_15) +man1_links = cweb:ctangle cweb:cweave $(am__append_3) $(am__append_5) \ + $(am__append_6) $(am__append_10) $(am__append_12) \ + $(am__append_15) $(am__append_17) web_man_sources = bibtex.man dvicopy.man dvitomp.man dvitype.man gftodvi.man \ gftopk.man gftype.man mft.man patgen.man pktogf.man pktype.man \ pltotf.man pooltype.man tftopl.man vftovp.man vptovf.man weave.man diff --git a/Build/source/texk/web2c/man/aleph.man b/Build/source/texk/web2c/man/aleph.man index 3684e434a34..0e89c08e44c 100644 --- a/Build/source/texk/web2c/man/aleph.man +++ b/Build/source/texk/web2c/man/aleph.man @@ -1,12 +1,11 @@ -.TH ALEPH 1 "27 April 2015" "Web2C @VERSION@" +.TH ALEPH 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/amslatex.min b/Build/source/texk/web2c/man/amslatex.min deleted file mode 100644 index 9c756daa82e..00000000000 --- a/Build/source/texk/web2c/man/amslatex.min +++ /dev/null @@ -1,108 +0,0 @@ -.TH AMSLATEX 1 "23 January 1994" -.\"===================================================================== -.if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP -.if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued -.\" BX definition must follow TX so BX can use TX -.if t .ds BX \fRB\s-2IB\s0\fP\*(TX -.if n .ds BX BibTeX -.\" LX definition must follow TX so LX can use TX -.if t .ds LX \fRL\\h'-0.36m'\\v'-0.15v'\s-2A\s0\\h'-0.15m'\\v'0.15v'\fP\*(TX -.if n .ds LX LaTeX -.if t .ds AX \fRA\\h'-0.1667m'\\v'0.20v'M\\v'-0.20v'\\h'-0.125m'S\fP\*(TX -.if n .ds AX AmSTeX -.if t .ds AY \fRA\\h'-0.1667m'\\v'0.20v'M\\v'-0.20v'\\h'-0.125m'S\fP\*(LX -.if n .ds AY AmSLaTeX -.if t .ds LZ \ -\fRL\ -\\h'-0.3m'\\v'-0.21v'\s-2A\s0\\v'0.21v'\ -\\h'-0.15m'\\v'0.188v'M\\v'-0.188v'\ -\\h'-0.125m'S\ -\fP-\*(TX -.if n .ds LZ LAmS-TeX -.if t .ds OZ \ -\fIL\ -\\h'-0.3m'\\v'-0.21v'\s-2A\s0\\v'0.21v'\ -\\h'-0.15m'\\v'0.188v'M\\v'-0.188v'\ -\\h'-0.125m'S\ -\fP-\*(OX -.if n .ds OZ LAmS-TeX -.\"===================================================================== -.SH NAME -amslatex \- structured text formatting and typesetting -.SH SYNOPSIS -.B amslatex -[ first-line ] -.\"===================================================================== -.SH DESCRIPTION -\*(AY is an extension of \*(LX (see -.IR "\*(LX \- A Document Preparation System" ) -that provides the powerful mathematical typesetting macros of -\*(AX (see -.IR "The Joy of \*(OX" ) -within the syntax of \*(LX. It should be contrasted with -\*(LZ -.RB ( lamstex (1)), -which extends \*(AX with \*(LX-like features. -.PP -\*(AY documents can be processed -by -.BR latex (1), -so a separate executable program named -.B amslatex -is not usually provided. -.PP -\*(AY is a \*(TX macro package, not a modification to the \*(TX source -program, so all the capabilities described in -.BR tex (1) -are present. -.PP -The \*(AY macros encourage writers to think about the content of their -documents, rather than the form. The ideal, not always realized, is to -have no formatting commands (like ``switch to italic'' or ``skip 2 -picas'') in the document at all; instead, everything is done -by specific markup instructions: ``emphasize'', ``start a section''. -.PP -\*(AX is the official typesetting system of the American Mathematical -Society, and nearly all of its publications are typeset using \*(AX. The -online version of AMS Math Reviews uses \*(AX input syntax for display of -mathematical material. AMS authors can provide editors with -computer-readable \*(AX or \*(AY files. -.PP -\*(AY will become deprecated in favor of \*(LX 2e, when the latter is -released. -.\"===================================================================== -.SH FILES -.TP \w'@@'u+2n -.I "@DEFAULT_TEXMF@/doc/ams/amslatex/amsldoc.tex" -Documentation for \*(AY, typesettable by \*(LX. -This supersedes -.IR "The Joy of \*(OX" , -but \*(AY users may still find that book a convenient supplement. -.TP -.I "@TEXINPUTDIR@/doc/ams/amslatex/testart.tex" -Sample \*(LA document illustrating the -.I amsart -document style. -.TP -.I "@TEXINPUTDIR@/doc/ams/amslatex/testbook.tex" -Sample \*(LA document illustrating the -.I amsbook -document style. -.\"===================================================================== -.SH "SEE ALSO" -.BR amstex (1), -.BR lamstex (1), -.BR latex (1), -.BR tex (1), -.BR slitex (1). -.br -Leslie Lamport, -.IR "\*(LX \- A Document Preparation System" , -Addison-Wesley, 1985, ISBN 0-201-15790-X. -.br -Michael Spivak, -.IR "The Joy of \*(OX" , -2nd edition, Addison-Wesley, 1990, ISBN 0-8218-2997-1. diff --git a/Build/source/texk/web2c/man/amstex.man b/Build/source/texk/web2c/man/amstex.man index 47f6b0f8867..4540dddfcbe 100644 --- a/Build/source/texk/web2c/man/amstex.man +++ b/Build/source/texk/web2c/man/amstex.man @@ -1,10 +1,9 @@ -.TH AMSTEX 1 "14 May 2010" "Web2C @VERSION@" +.TH AMSTEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.if t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP\" for troff -.if n .ds OX TeX\" for nroff -.\" the same but obliqued +.if t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP\" +.if n .ds OX TeX\" .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/bibtex.man b/Build/source/texk/web2c/man/bibtex.man index f7c75507ec7..b2fb880ee10 100644 --- a/Build/source/texk/web2c/man/bibtex.man +++ b/Build/source/texk/web2c/man/bibtex.man @@ -1,10 +1,9 @@ -.TH BIBTEX 1 "1 February 2010" "bibtex 0.99d" "Web2C @VERSION@" +.TH BIBTEX 1 "16 June 2015" "bibtex 0.99d" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/dvitomp.man b/Build/source/texk/web2c/man/dvitomp.man index d89172985e4..4c9969b7b88 100644 --- a/Build/source/texk/web2c/man/dvitomp.man +++ b/Build/source/texk/web2c/man/dvitomp.man @@ -1,4 +1,4 @@ -.TH DVITOMP 1 "27 April 2015" "Web2C @VERSION@" +.TH DVITOMP 1 "16 June 2015" "Web2C @VERSION@" .\" man page by Jim Van Zandt .SH NAME dvitomp \- convert a TeX DVI file to a MetaPost MPXFILE diff --git a/Build/source/texk/web2c/man/dvitype.man b/Build/source/texk/web2c/man/dvitype.man index 80edd9ade5f..caad25f09f2 100644 --- a/Build/source/texk/web2c/man/dvitype.man +++ b/Build/source/texk/web2c/man/dvitype.man @@ -1,10 +1,9 @@ -.TH DVITYPE 1 "19 December 1994" "Web2C @VERSION@" +.TH DVITYPE 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/etex.man b/Build/source/texk/web2c/man/etex.man index d8d5d131246..92fce4b7895 100644 --- a/Build/source/texk/web2c/man/etex.man +++ b/Build/source/texk/web2c/man/etex.man @@ -1,14 +1,11 @@ -.TH ETEX 1 "1 March 2011" "Web2C @VERSION@" +.TH ETEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/gftodvi.man b/Build/source/texk/web2c/man/gftodvi.man index 5dd8234e0e0..ea952df44cc 100644 --- a/Build/source/texk/web2c/man/gftodvi.man +++ b/Build/source/texk/web2c/man/gftodvi.man @@ -1,12 +1,11 @@ -.TH GFTODVI 1 "20 April 2007" "Web2C @VERSION@" +.TH GFTODVI 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/gftopk.man b/Build/source/texk/web2c/man/gftopk.man index 0af5af98eae..c0f4d95d0f6 100644 --- a/Build/source/texk/web2c/man/gftopk.man +++ b/Build/source/texk/web2c/man/gftopk.man @@ -1,12 +1,11 @@ -.TH GFTOPK 1 "14 December 1993" "Web2C @VERSION@" +.TH GFTOPK 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/gftype.man b/Build/source/texk/web2c/man/gftype.man index 351607c6186..8a80dd963ef 100644 --- a/Build/source/texk/web2c/man/gftype.man +++ b/Build/source/texk/web2c/man/gftype.man @@ -1,12 +1,11 @@ -.TH GFTYPE 1 "14 December 1993" "Web2C @VERSION@" +.TH GFTYPE 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/initex.min b/Build/source/texk/web2c/man/initex.min deleted file mode 100644 index 3fdff8763c0..00000000000 --- a/Build/source/texk/web2c/man/initex.min +++ /dev/null @@ -1,147 +0,0 @@ -.TH INITEX 1 "27 December 1992" -.\"===================================================================== -.if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP -.if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued -.\" BX definition must follow TX so BX can use TX -.if t .ds BX \fRB\s-2IB\s0\fP\*(TX -.if n .ds BX BibTeX -.\" LX definition must follow TX so LX can use TX -.if t .ds LX \fRL\\h'-0.36m'\\v'-0.15v'\s-2A\s0\\h'-0.15m'\\v'0.15v'\fP\*(TX -.if n .ds LX LaTeX -.\"===================================================================== -.SH NAME -initex \- initial TeX for making format (.fmt) files -.SH DESCRIPTION -.B initex -is a special version of the \*(TX program that has -no preloaded macro packages, but is capable of -converting a macro package into a special -preformatted binary file, called a -.I format -.RI ( .fmt ) -file. That format file can subsequently be read -at high speed by -.BR virtex . -.PP -Major macro packages may require \*(TX to process -many thousands of lines of macros, and open and -read scores of font files, all of which would -contribute to a sizable startup overhead if the -job had to be done every time \*(TX was run. -.B initex -allows \*(TX to do the job once, and then save the -results in a binary format file that can be later -loaded more rapidly by -.BR virtex . -.PP -.B initex -is normally required only at the time \*(TX is -installed, or whenever major macro packages are -updated. Thus, it will be rare for anyone but -system installers to invoke it. Nevertheless, it -is just a normal program without special -privileges, so ordinary users can use it to -prepare a private format file. -.PP -Here is how you can ask -.B initex -to prepare format files for several major -packages: -.PP -For plain -.BR tex : -.RS -.nf -.I "initex 'plain \\\\dump'" -.I "mv plain.fmt tex.fmt" -.fi -The single quotes are necessary to protect -the backslash from interpretation as a Unix shell -escape character. -.RE -.PP -For -.BR amstex : -.RS -.nf -.I "initex '&tex amstex \\\\dump'" -.fi -The single quotes around the first argument -protect the ampersand from interpretation as a -Unix shell background request. -.RE -.PP -For -.BR etex : -.RS -.nf -.I "initex '&tex eplain \\\\dump'" -.I "mv eplain.fmt etex.fmt" -.fi -.RE -.PP -For -.BR lamstex : -.RS -.nf -.I "initex '&tex amstexl \\\\input lamstex \\\\dump'" -.I "mv amstexl.fmt lamstex.fmt" -.fi -.RE -.PP -For -.BR latex : -.RS -.nf -.I "initex 'lplain \\\\dump'" -.I "mv lplain.fmt latex.fmt" -.fi -.RE -.PP -For -.BR slitex : -.RS -.nf -.I "initex 'splain \\\\dump'" -.I "mv splain.fmt slitex.fmt" -.fi -.RE -.PP -For -.BR texinfo : -.RS -.nf -.I "initex '&tex texinfo @dump'" -.fi -The last argument is different from the previous -examples because -.B texinfo -redefines the \*(TX escape character from -backslash to at-sign. As for -.BR amstex , -the file -.I tex.fmt -must already be available. -.RE -.PP -Note that several of these require that the format file for plain -\*(TX be available, since the first argument word -.I &tex -asks for the loading of the file -.IR tex.fmt . -.PP -It does not matter whether the command-line arguments are passed as a -single argument, or as separate arguments, since \*(TX reconstructs -the command line anyway. -.\"===================================================================== -.SH "SEE ALSO" -.BR amslatex (1), -.BR amstex (1), -.BR lamstex (1), -.BR latex (1), -.BR slitex (1), -.BR tex (1), -.BR virtex (1). diff --git a/Build/source/texk/web2c/man/lamstex.min b/Build/source/texk/web2c/man/lamstex.min deleted file mode 100644 index 59abcb4747c..00000000000 --- a/Build/source/texk/web2c/man/lamstex.min +++ /dev/null @@ -1,67 +0,0 @@ -.TH LAMSTEX 1 "27 December 1992" -.\"===================================================================== -.if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP -.if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued -.\" BX definition must follow TX so BX can use TX -.if t .ds BX \fRB\s-2IB\s0\fP\*(TX -.if n .ds BX BibTeX -.\" LX definition must follow TX so LX can use TX -.if t .ds LX \fRL\\h'-0.36m'\\v'-0.15v'\s-2A\s0\\h'-0.15m'\\v'0.15v'\fP\*(TX -.if n .ds LX LaTeX -.if t .ds AX \fRA\\h'-0.1667m'\\v'0.20v'M\\v'-0.20v'\\h'-0.125m'S\fP\*(TX -.if n .ds AX AmSTeX -.if t .ds AY \fRA\\h'-0.1667m'\\v'0.20v'M\\v'-0.20v'\\h'-0.125m'S\fP\*(LX -.if n .ds AY AmSLaTeX -.if t .ds LZ \ -\fRL\ -\\h'-0.3m'\\v'-0.21v'\s-2A\s0\\v'0.21v'\ -\\h'-0.15m'\\v'0.188v'M\\v'-0.188v'\ -\\h'-0.125m'S\ -\fP-\*(TX -.if n .ds LZ LAmS-TeX -.if t .ds OZ \ -\fIL\ -\\h'-0.3m'\\v'-0.21v'\s-2A\s0\\v'0.21v'\ -\\h'-0.15m'\\v'0.188v'M\\v'-0.188v'\ -\\h'-0.125m'S\ -\fP-\*(OX -.if n .ds OZ LAmS-TeX -.\"===================================================================== -.SH NAME -lamstex \- structured text formatting and typesetting -.SH SYNOPSIS -.B lamstex -[ first-line ] -.\"===================================================================== -.SH DESCRIPTION -The \*(LZ language is described in the book -.IR "\*(OZ: The Synthesis" . -\*(LZ is a new system that augments \*(AX with \*(LX-like features, -but retains the syntactical flavor of \*(AX. It can be compared with -\*(AY, which augments \*(LX with \*(AX-like features. -.PP -\*(LZ is a \*(TX macro package, not a modification to the \*(TX source -program, so all the capabilities described in -.BR tex (1) -are present. -.PP -The \*(LZ macros encourage writers to think about the content of their -documents, rather than the form. The ideal, not always realized, is to -have no formatting commands (like ``switch to italic'' or ``skip 2 -picas'') in the document at all; instead, everything is done -by specific markup instructions: ``emphasize'', ``start a section''. -.\"===================================================================== -.SH "SEE ALSO" -.BR amslatex (1), -.BR amstex (1), -.BR latex (1), -.BR tex (1), -.BR slitex (1). -.br -Michael Spivak, -.IR "\*(OZ: The Synthesis" , -The \*(TXplorators Corporation, 3701 W. Alabama, Suite 450-273, -Houston, TX 77027, USA, 1989. diff --git a/Build/source/texk/web2c/man/latex.man b/Build/source/texk/web2c/man/latex.man index d52aecd416b..6f2a3701a48 100644 --- a/Build/source/texk/web2c/man/latex.man +++ b/Build/source/texk/web2c/man/latex.man @@ -1,10 +1,9 @@ -.TH LATEX 1 "27 April 2015" "Web2C @VERSION@" +.TH LATEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP\" for troff -.el .ds OX TeX\" for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP\" +.el .ds OX TeX\" .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/luatex.man b/Build/source/texk/web2c/man/luatex.man index 207689819c9..c6c8350d295 100644 --- a/Build/source/texk/web2c/man/luatex.man +++ b/Build/source/texk/web2c/man/luatex.man @@ -1,7 +1,7 @@ -.TH LUATEX 1 "27 April 2015" "Web2C @VERSION@" +.TH LUATEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX .if n .ds WB Web diff --git a/Build/source/texk/web2c/man/mf.man b/Build/source/texk/web2c/man/mf.man index 16b6645ac86..8c092e17ce6 100644 --- a/Build/source/texk/web2c/man/mf.man +++ b/Build/source/texk/web2c/man/mf.man @@ -1,12 +1,11 @@ -.TH MF 1 "27 April 2015" "Web2C @VERSION@" +.TH MF 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX @@ -17,7 +16,7 @@ .if t .ds WB W\s-2EB\s0 .\"===================================================================== .SH NAME -mf, mf-nowin, inimf \- Metafont, a language for font and logo design +mf, inimf, mf-nowin \- Metafont, a language for font and logo design .SH SYNOPSIS .B mf .RI [ options ] diff --git a/Build/source/texk/web2c/man/mft.man b/Build/source/texk/web2c/man/mft.man index 39b0f4c1c72..4f902f8dbf2 100644 --- a/Build/source/texk/web2c/man/mft.man +++ b/Build/source/texk/web2c/man/mft.man @@ -1,14 +1,13 @@ -.TH MFT 1 "14 December 1993" "Web2C @VERSION@" +.TH MFT 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MP MetaPost .if t .ds MP MetaPost .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/mpost.man b/Build/source/texk/web2c/man/mpost.man index 34762e278f9..924666fbf11 100644 --- a/Build/source/texk/web2c/man/mpost.man +++ b/Build/source/texk/web2c/man/mpost.man @@ -1,4 +1,4 @@ -.TH MPOST 1 "27 April 2015" "Web2C @VERSION@" +.TH MPOST 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .de URL \\$2 \(laURL: \\$1 \(ra\\$3 @@ -7,12 +7,11 @@ .if n .ds MP MetaPost .if t .ds MP MetaPost .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/ofm2opl.man b/Build/source/texk/web2c/man/ofm2opl.man index b104d8e5932..a374dead14c 100644 --- a/Build/source/texk/web2c/man/ofm2opl.man +++ b/Build/source/texk/web2c/man/ofm2opl.man @@ -1,4 +1,4 @@ -.TH "OFM2OPL" "27 April 2015" "Web2C @VERSION@" +.TH OFM2OPL "16 June 2015" "Web2C @VERSION@" .PP .SH "NAME" ofm2opl \- convert Omega and TeX font-metric files to property-list files diff --git a/Build/source/texk/web2c/man/opl2ofm.man b/Build/source/texk/web2c/man/opl2ofm.man index c6fd412c9cd..638433722b2 100644 --- a/Build/source/texk/web2c/man/opl2ofm.man +++ b/Build/source/texk/web2c/man/opl2ofm.man @@ -1,4 +1,4 @@ -.TH "OPL2OFM" "27 April 2015" "Web2C @VERSION@" +.TH OPL2OFM "16 June 2015" "Web2C @VERSION@" .PP .SH "NAME" opl2ofm \- convert Omega and TeX property-list files to font-metric files diff --git a/Build/source/texk/web2c/man/ovf2ovp.man b/Build/source/texk/web2c/man/ovf2ovp.man index 9b9c43e6159..fa3c250b7e3 100644 --- a/Build/source/texk/web2c/man/ovf2ovp.man +++ b/Build/source/texk/web2c/man/ovf2ovp.man @@ -1,4 +1,4 @@ -.TH "OVF2OVP" "27 April 2015" "Web2C @VERSION@" +.TH OVF2OVP "16 June 2015" "Web2C @VERSION@" .PP .SH "NAME" ovf2ovp \- convert a virtual font file and its associated font metric file into property-list format diff --git a/Build/source/texk/web2c/man/ovp2ovf.man b/Build/source/texk/web2c/man/ovp2ovf.man index 4a58c149de8..dcb1e0a53df 100644 --- a/Build/source/texk/web2c/man/ovp2ovf.man +++ b/Build/source/texk/web2c/man/ovp2ovf.man @@ -1,4 +1,4 @@ -.TH "OVP2OVF" "27 April 2015" "Web2C @VERSION@" +.TH OVP2OVF "16 June 2015" "Web2C @VERSION@" .PP .SH "NAME" ovp2ovf \- convert a virtual property-list file into a virtual font file and its associated font metric file diff --git a/Build/source/texk/web2c/man/patgen.man b/Build/source/texk/web2c/man/patgen.man index 36bc1f7d057..cb4ae6af19f 100644 --- a/Build/source/texk/web2c/man/patgen.man +++ b/Build/source/texk/web2c/man/patgen.man @@ -1,11 +1,9 @@ -.TH PATGEN 1 "2 December 2014" "Web2C @VERSION@" +.TH PATGEN 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP .el .ds OX TeX -.\" that's for nroff. -.\" the same but obliqued .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/pdfetex.man b/Build/source/texk/web2c/man/pdfetex.man index fe391fcb786..1d7607bf24d 100644 --- a/Build/source/texk/web2c/man/pdfetex.man +++ b/Build/source/texk/web2c/man/pdfetex.man @@ -1,14 +1,11 @@ -.TH PDFETEX 1 "27 April 2015" "Web2C @VERSION@" +.TH PDFETEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP\" for troff -.el .ds OX TeX\" for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/pdftex.man b/Build/source/texk/web2c/man/pdftex.man index d9290c234be..507801dbeb2 100644 --- a/Build/source/texk/web2c/man/pdftex.man +++ b/Build/source/texk/web2c/man/pdftex.man @@ -1,14 +1,11 @@ -.TH PDFTEX 1 "27 April 2015" "Web2C @VERSION@" +.TH PDFTEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/pdftosrc.man b/Build/source/texk/web2c/man/pdftosrc.man index 0f32392c886..bb614a11981 100644 --- a/Build/source/texk/web2c/man/pdftosrc.man +++ b/Build/source/texk/web2c/man/pdftosrc.man @@ -1,9 +1,4 @@ -.\" Process this file with -.\" groff -man -Tascii pdftosrc.1 -.\" -.\" $Id: pdftosrc.1,v 1.5 2006/12/22 23:46:23 hhenkel Exp $ -.\" -.TH pdftosrc 1 "27 April 2015" "Web2C @VERSION@" +.TH pdftosrc 1 "16 June 2015" "Web2C @VERSION@" .SH NAME pdftosrc \- extract source file or stream from PDF file .SH SYNOPSIS diff --git a/Build/source/texk/web2c/man/pktogf.man b/Build/source/texk/web2c/man/pktogf.man index 20d19affe79..9fc78d4f707 100644 --- a/Build/source/texk/web2c/man/pktogf.man +++ b/Build/source/texk/web2c/man/pktogf.man @@ -1,12 +1,11 @@ -.TH PKTOGF 1 "14 December 1993" "Web2C @VERSION@" +.TH PKTOGF 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/pktype.man b/Build/source/texk/web2c/man/pktype.man index 25a763d7855..3c1df7bfe69 100644 --- a/Build/source/texk/web2c/man/pktype.man +++ b/Build/source/texk/web2c/man/pktype.man @@ -1,12 +1,11 @@ -.TH PKTYPE 1 "5 May 2011" "Web2C @VERSION@" +.TH PKTYPE 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/pltotf.man b/Build/source/texk/web2c/man/pltotf.man index 0b4da6c06a2..8e7e5b46595 100644 --- a/Build/source/texk/web2c/man/pltotf.man +++ b/Build/source/texk/web2c/man/pltotf.man @@ -1,12 +1,11 @@ -.TH PLTOTF 1 "27 December 1992" "Web2C @VERSION@" +.TH PLTOTF 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/pooltype.man b/Build/source/texk/web2c/man/pooltype.man index bc7dabe36af..a08be578e17 100644 --- a/Build/source/texk/web2c/man/pooltype.man +++ b/Build/source/texk/web2c/man/pooltype.man @@ -1,10 +1,9 @@ -.TH POOLTYPE 1 "27 December 1992" "Web2C @VERSION@" +.TH POOLTYPE 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/slitex.min b/Build/source/texk/web2c/man/slitex.min deleted file mode 100644 index 37031db8b60..00000000000 --- a/Build/source/texk/web2c/man/slitex.min +++ /dev/null @@ -1,39 +0,0 @@ -.TH SLITEX 1 "27 December 1992" -.\"===================================================================== -.if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP -.if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued -.\" BX definition must follow TX so BX can use TX -.if t .ds BX \fRB\s-2IB\s0\fP\*(TX -.if n .ds BX BibTeX -.\" LX definition must follow TX so LX can use TX -.if t .ds LX \fRL\\h'-0.36m'\\v'-0.15v'\s-2A\s0\\h'-0.15m'\\v'0.15v'\fP\*(TX -.if n .ds LX LaTeX -.\"===================================================================== -.SH NAME -slitex \- make LaTeX slides -.SH SYNOPSIS -.B slitex -[ first-line ] -.\"===================================================================== -.SH DESCRIPTION -The -.B slitex -program is a variant of -.BR latex (1), -designed for generating slides. -It is described in Appendix A of -.IR "\*(LX \- A Document Preparation System" . -All the capabilities described in -.BR tex (1) -are present. -.\"===================================================================== -.SH "SEE ALSO" -.BR latex (1), -.BR tex (1). -.br -Leslie Lamport, -.IR "\*(LX \- A Document Preparation System" , -Addison-Wesley, 1985, ISBN 0-201-15790-X. diff --git a/Build/source/texk/web2c/man/tangle.man b/Build/source/texk/web2c/man/tangle.man index 57cbfd1e421..3b524db6da7 100644 --- a/Build/source/texk/web2c/man/tangle.man +++ b/Build/source/texk/web2c/man/tangle.man @@ -1,12 +1,11 @@ -.TH TANGLE 1 "1 March 2011" "Web2C @VERSION@" +.TH TANGLE 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/tex.man b/Build/source/texk/web2c/man/tex.man index 7787808b085..445ab949c10 100644 --- a/Build/source/texk/web2c/man/tex.man +++ b/Build/source/texk/web2c/man/tex.man @@ -1,14 +1,11 @@ -.TH TEX 1 "27 April 2015" "Web2C @VERSION@" +.TH TEX 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/tftopl.man b/Build/source/texk/web2c/man/tftopl.man index 1fc9bc122ee..087f53fcdd9 100644 --- a/Build/source/texk/web2c/man/tftopl.man +++ b/Build/source/texk/web2c/man/tftopl.man @@ -1,12 +1,11 @@ -.TH TFTOPL 1 "17 December 1994" "Web2C @VERSION@" +.TH TFTOPL 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/ttf2afm.man b/Build/source/texk/web2c/man/ttf2afm.man index f3ced33a47b..6746f548089 100644 --- a/Build/source/texk/web2c/man/ttf2afm.man +++ b/Build/source/texk/web2c/man/ttf2afm.man @@ -1,4 +1,4 @@ -.TH TTF2AFM 1 "27 April 2015" "Web2C @VERSION@" +.TH TTF2AFM 1 "16 June 2015" "Web2C @VERSION@" .PP .SH "NAME" ttf2afm \- utility to generate AFM files for TrueType fonts diff --git a/Build/source/texk/web2c/man/vftovp.man b/Build/source/texk/web2c/man/vftovp.man index 00b94e68694..bfe5eb50188 100644 --- a/Build/source/texk/web2c/man/vftovp.man +++ b/Build/source/texk/web2c/man/vftovp.man @@ -1,10 +1,9 @@ -.TH VFTOVP 1 "19 December 1994" "Web2C @VERSION@" +.TH VFTOVP 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/virtex.min b/Build/source/texk/web2c/man/virtex.min deleted file mode 100644 index 8d490e9ea15..00000000000 --- a/Build/source/texk/web2c/man/virtex.min +++ /dev/null @@ -1,81 +0,0 @@ -.TH VIRTEX 1 "14 December 1993" -.\"===================================================================== -.if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP -.if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued -.\" BX definition must follow TX so BX can use TX -.if t .ds BX \fRB\s-2IB\s0\fP\*(TX -.if n .ds BX BibTeX -.\" LX definition must follow TX so LX can use TX -.if t .ds LX \fRL\\h'-0.36m'\\v'-0.15v'\s-2A\s0\\h'-0.15m'\\v'0.15v'\fP\*(TX -.if n .ds LX LaTeX -.if t .ds AX \fRA\\h'-0.1667m'\\v'0.20v'M\\v'-0.20v'\\h'-0.125m'S\fP\*(TX -.if n .ds AX AmSTeX -.if t .ds AY \fRA\\h'-0.1667m'\\v'0.20v'M\\v'-0.20v'\\h'-0.125m'S\fP\*(LX -.if n .ds AY AmSLaTeX -.\"===================================================================== -.SH NAME -virtex \- virgin TeX for production typesetting -.SH DESCRIPTION -.B virtex -is a version of the \*(TX program that has no -preloaded macro packages, but is capable of -loading a special preformatted binary file, called -a -.I format -.RI ( .fmt ) -file produced by the -.BR initex (1) -program. -.PP -Preprocessing of large macro files and font -definitions by -.B initex -makes it possible to rapidly load complex -packages, like plain \*(TX, \*(AX, \*(AY, or \*(LX, -without the overhead of macro parsing and file -opening that would otherwise be experienced. -.PP -.B virtex -can be invoked directly, providing it with a name -of a format file specially prefixed by an -ampersand: -.RS -.I "virtex '&plain' filename" -.RE -This causes it to load the binary file named -.I plain.fmt -from a directory in the standard TEXINPUTS search -path, and then load the text file -.I filename -and process it. The quotes are needed to protect -the ampersand from Unix shell interpretation. -.PP -Because this need occurs frequently, Unix -.B virtex -provides a convenient shorthand. If it is invoked -under a name other than -.BR virtex , -such as -.BR footex , -it will behave as if it had been invoked as -.I "virtex '&footex'" -and first load a file named -.IR footex.fmt . -Thus, -.BR amslatex , -.BR amstex , -.BR lamstex , -.BR latex , -.BR slitex , -.BR tex , -.BR texinfo , -and others can all be file system links to -.BR virtex , -without requiring additional disk space. -.\"===================================================================== -.SH "SEE ALSO" -.BR initex (1), -.BR tex (1). diff --git a/Build/source/texk/web2c/man/vptovf.man b/Build/source/texk/web2c/man/vptovf.man index eaf9e203661..5bab94f0a7e 100644 --- a/Build/source/texk/web2c/man/vptovf.man +++ b/Build/source/texk/web2c/man/vptovf.man @@ -1,10 +1,9 @@ -.TH VPTOVF 1 "16 December 1994" "Web2C @VERSION@" +.TH VPTOVF 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP .if n .ds TX TeX -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff -.el .ds OX TeX for nroff -.\" the same but obliqued +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX .if n .ds BX BibTeX diff --git a/Build/source/texk/web2c/man/weave.man b/Build/source/texk/web2c/man/weave.man index 905e45a91a1..9c79ff2559d 100644 --- a/Build/source/texk/web2c/man/weave.man +++ b/Build/source/texk/web2c/man/weave.man @@ -1,12 +1,11 @@ -.TH WEAVE 1 "7 April 2010" "Web2C @VERSION@" +.TH WEAVE 1 "16 June 2015" "Web2C @VERSION@" .\"===================================================================== .if n .ds MF Metafont -.if t .ds MF M\s-2ETAFONT\s0 +.if t .ds MF Metafont .if n .ds TX TeX .if t .ds TX \fRT\\h'-0.1667m'\\v'0.20v'E\\v'-0.20v'\\h'-0.125m'X\fP -.\" the same but obliqued -.el .ds OX TeX for nroff -.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP for troff +.ie t .ds OX \fIT\v'+0.25m'E\v'-0.25m'X\fP +.el .ds OX TeX .\" BX definition must follow TX so BX can use TX .if n .ds BX BibTeX .if t .ds BX \fRB\s-2IB\s0\fP\*(TX -- cgit v1.2.3