diff options
author | Karl Berry <karl@freefriends.org> | 2010-02-26 17:03:45 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-02-26 17:03:45 +0000 |
commit | 1ddce7531f4b8c5ab40aa74ad200a28abed87ef9 (patch) | |
tree | e8e60cf83525544aa38962eac42d375090596434 /Master/texmf-dist/doc | |
parent | 059ad4846f783b8132ce3546eb1fc42b03c5a2a5 (diff) |
concmath-fonts separated from concmath, per Catalogue
git-svn-id: svn://tug.org/texlive/trunk@17218 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r-- | Master/texmf-dist/doc/fonts/concmath-fonts/CATALOGUE | 30 | ||||
-rw-r--r-- | Master/texmf-dist/doc/fonts/concmath-fonts/Makefile | 105 | ||||
-rw-r--r-- | Master/texmf-dist/doc/fonts/concmath-fonts/README | 67 |
3 files changed, 202 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/fonts/concmath-fonts/CATALOGUE b/Master/texmf-dist/doc/fonts/concmath-fonts/CATALOGUE new file mode 100644 index 00000000000..37e9c6ca2d1 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/concmath-fonts/CATALOGUE @@ -0,0 +1,30 @@ + <entry id="concmath" + datestamp="18 Mar 1999" + modifier="UV"> + <about> + <name>concmath</name> + <title>Concrete Math fonts</title> + <author> + <name>Ulrik Vieth</name> + <email>vieth@thphy.uni-duesseldorf.de</email> + </author> + <home></home> + <license type="unknown"/> + <version> + <number>1999/03/18</number> + </version> + <xref refid="concrete ccfonts"/> + </about> + <description> + <abstract> + LaTeX package and font definition files to access the Concrete + math fonts, which were derived from Computer Modern math fonts + using parameters from Concrete Roman text fonts. + </abstract> + </description> + <distribution> + <ctan>macros/latex/contrib/other/concmath</ctan> + <ctan>fonts/concmath</ctan> + <texlive>fonts3</texlive> + </distribution> + </entry> diff --git a/Master/texmf-dist/doc/fonts/concmath-fonts/Makefile b/Master/texmf-dist/doc/fonts/concmath-fonts/Makefile new file mode 100644 index 00000000000..020ab89e115 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/concmath-fonts/Makefile @@ -0,0 +1,105 @@ +## Makefile for the installation of the `concmath' fonts: +## +## 1999-03-15, Ulrik Vieth <vieth@thphy.uni-duesseldorf.de> +## + +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +## Usage: +## +## say 'make install' to install the fonts +## + +### package specifics (don't change!): + +# package name, used in directories +SUPPLIER = public +TYPEFACE = concmath + +# file names, used in dependencies + +MFFILES = \ + xccmi5.mf xccmi6.mf xccmi7.mf xccmi8.mf xccmi9.mf xccmi10.mf \ + xccsy5.mf xccsy6.mf xccsy7.mf xccsy8.mf xccsy9.mf xccsy10.mf \ + xccam5.mf xccam6.mf xccam7.mf xccam8.mf xccam9.mf xccam10.mf \ + xccbm5.mf xccbm6.mf xccbm7.mf xccbm8.mf xccbm9.mf xccbm10.mf \ + xccex7.mf xccex8.mf xccex9.mf xccex10.mf +TFMFILES = \ + xccmi5.tfm xccmi6.tfm xccmi7.tfm xccmi8.tfm xccmi9.tfm xccmi10.tfm \ + xccsy5.tfm xccsy6.tfm xccsy7.tfm xccsy8.tfm xccsy9.tfm xccsy10.tfm \ + xccam5.tfm xccam6.tfm xccam7.tfm xccam8.tfm xccam9.tfm xccam10.tfm \ + xccbm5.tfm xccbm6.tfm xccbm7.tfm xccbm8.tfm xccbm9.tfm xccbm10.tfm \ + xccex7.tfm xccex8.tfm xccex9.tfm xccex10.tfm + + +### customizable variables: + +# Where the TeX installation resides: +TEXMF = `kpsewhich --expand-path='$$TEXMFMAIN'` +#TEXMF = /usr/local/teTeX/share/texmf + +# standard directories +srcdir = . +MFDIR = $(TEXMF)/fonts/source/$(SUPPLIER)/$(TYPEFACE) +TFMDIR = $(TEXMF)/fonts/tfm/$(SUPPLIER)/$(TYPEFACE) + + +# How to install the files: +INSTALL = cp -p +#INSTALL = install -c + +# How to cleanup the files: +CLEAN = rm -f + +# How to update the directory database: +TEXHASH = mktexlsr +#TEXHASH = texhash + + +### unpack targets: + +default: all +all: + @echo + @echo "Please call \`make install' to install the font files!" + @echo + @true + +### install targets: + +install: install-fonts post-install +.PHONY: install + +install-fonts: + test -d $(MFDIR) || mkdir $(MFDIR) + (for f in $(MFFILES); \ + do $(INSTALL) $(srcdir)/mf/$$f $(MFDIR); done) + test -d $(TFMDIR) || mkdir $(TFMDIR) + (for f in $(TFMFILES); \ + do $(INSTALL) $(srcdir)/tfm/$$f $(TFMDIR); done) +.PHONY: install-fonts + +# uninstall target: + +uninstall: + (for f in $(MFFILES); \ + do $(CLEAN) $(MFDIR)/$$f; done) + (for f in $(TFMFILES); \ + do $(CLEAN) $(TFMDIR)/$$f; done) +.PHONY: uninstall + + +# Update the directory database: +post-install: + $(TEXHASH) +.PHONY: post-install + + +### clean targets: +clean: + rm -f *.log *.aux *.toc *.lof *.lot *.bbl *.blg + rm -f *.idx *.ind *.ilg *.glo *.gls + +distclean: clean diff --git a/Master/texmf-dist/doc/fonts/concmath-fonts/README b/Master/texmf-dist/doc/fonts/concmath-fonts/README new file mode 100644 index 00000000000..60624098a78 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/concmath-fonts/README @@ -0,0 +1,67 @@ +fonts/concmath --- Concrete Math fonts. + +Copyright (C) 1995--99 Ulrik Vieth + + +COPYING: + +This software is free software; you can redistribute it and/or +modify it under the terms of the LaTeX Project Public License +as described in lppl.txt in the base LaTeX distribution; either +version 1 of the License, or (at your option) any later version. + +This software is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + +DESCRIPTION: + +This directory and its subdirectories are part of the `concmath' +package for LaTeX(2e) that provides access to the Concrete Math +typefaces, which were derived from the Concrete Roman typefaces +designed by Donald E. Knuth. + +This directory appears on CTAN archives in two different places: + + CTAN:fonts/concmacth + CTAN:macros/latex/contrib/supported/concmath/fonts + +Whatever it may be, this directory contains two subdirectories +`mf' and `tfm' that hold the Metafont sources and font metrics +of the Concrete Math typefaces. + +The Concrete Math fonts provide a collection of math italics, +math symbol, and math extension fonts that complement the +Concrete Roman fonts, so that the Concrete family of typefaces +may be used as a complete replacement for Computer Modern. +(Orginally, Concrete Roman was designed as a text font for use +with the Euler math font, designed by Hermann Zapf.) + +Since Concrete is considerably darker than Computer Modern, this +variant may be of particular interest for use in low-resolution +printing or in display-oriented applications such as posters, +transparencies, or online documents. + +To access the Concrete Math fonts in LaTeX(2e), you may wish to +consult either the `concmath' package or the `ccfonts' package, +both located in CTAN:macros/latex/contrib/supported. + +For further documentation about how the Concrete math fonts were +derived, please read the documentation of the `concmath' package +located in CTAN:macros/latex/contrib/supported/concmath. + + +INSTALLATION: + +- If you have a TDS-compatible TeX installation, you may try to + use the enclosed `Makefile' by calling: + + make install + +- For manual installation, copy the contents of the subdirectories + `mf' and `tfm' to TEXMF/fonts/{source,tfm}/public/concmath or + wherever else your installation keeps .mf sources and .tfm files. + + +Happy TeXing! |