diff options
author | Karl Berry <karl@freefriends.org> | 2019-05-12 20:18:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-05-12 20:18:41 +0000 |
commit | 92f53dfb065edac3bd936e1ba9daace19f255044 (patch) | |
tree | 7d36fa2550103e75c73ab4123e5e337aa26de14d /Master/texmf-dist/doc/latex/mathcommand | |
parent | 6896186577e9edaddc27b28d3e51e8457b422c3a (diff) |
mathcommand (12may19)
git-svn-id: svn://tug.org/texlive/trunk@51105 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/mathcommand')
-rw-r--r-- | Master/texmf-dist/doc/latex/mathcommand/README.md | 36 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/mathcommand/makefile | 49 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/mathcommand/mathcommand.pdf | bin | 0 -> 442641 bytes |
3 files changed, 85 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/mathcommand/README.md b/Master/texmf-dist/doc/latex/mathcommand/README.md new file mode 100644 index 00000000000..130983e4e08 --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathcommand/README.md @@ -0,0 +1,36 @@ +%%%%%%%% +This directory contains the package + + name: mathcommand + license: LaTeX Project Public License version 1.2 or above + version: v1.01 + date: 2019/05/12 + author: Thomas Colcombet + mail: thomas.colcombet@irif.fr + web: - + +Purpose: + The mathcommand package provides functionalities for defining macros: + - that have different behaviors depending on whether in math or text mode, + - absorb Primes, Indices, Exponents (PIE) following LaTeX notations and + have them as extra parameters usable in the code. + The primary objective of this code is to be used together with the knowledge + package for a proper handling of mathematical notations. + +Install: + It is sufficient to have the file mathcommand.sty accessible by LaTeX. + It can be produced by `make mathcommand.sty' if necessary. + The documentation is in the file mathcommand.pdf. + +Content of the file mathcommand-ctan.zip: + - README.md: this file generated while compiling mathcommand.ins, + - mathcommand.sty: the package file (generated using knowledge.ins) + - mathcommand.pdf: the user documentation (generated by compiling + mathcommand.dtx) + - makefile: the makefile. Use 'make all' to generate mathcommand.sty + and knowledge.pdf. It can also: clean the directory, make zip + version of the sources, or ready for CTAN. + - mathcommand.ins: is the file generating mathcommand.sty and + README.md from mathcommand.dtx (using docstrip). + - mathcommand.dtx: code and documentation. + diff --git a/Master/texmf-dist/doc/latex/mathcommand/makefile b/Master/texmf-dist/doc/latex/mathcommand/makefile new file mode 100644 index 00000000000..0e802f1fad3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathcommand/makefile @@ -0,0 +1,49 @@ +help: + @echo "This is the makefile for the mathcommand package" + @echo "- all: produces mathcommand.pdf mathcommand.sty mathcommand-code.pdf README.md" + @echo "- clean" + @echo "- ctan: creates the mathcommand-ctan.zip file tailored for CTAN" + +all: mathcommand.sty mathcommand.pdf README.md + +mathcommand.sty: mathcommand.dtx mathcommand.ins + latex mathcommand.ins + +README.md: mathcommand.dtx mathcommand.ins + latex mathcommand.ins + +clean: + rm -f *.aux *.glo *.idx *.aux *.synctex.gz *.out *.toc *.kaux *.diagnose *.log + rm -f *.bbl *.out *.bbl *.ind *.ilg *.idx + rm -f mathcommand.sty + rm -f mathcommand.pdf + rm -f mathcommand-sources-complete.zip + rm -f mathcommand-ctan.zip + rm -f README.md + +ctan: mathcommand-ctan.zip + +mathcommand.pdf: mathcommand.dtx mathcommand.sty + pdflatex mathcommand.dtx + pdflatex mathcommand.dtx + pdflatex mathcommand.dtx + +mathcommand.aux: mathcommand.dtx mathcommand.sty + pdflatex mathcommand.dtx + +sources: clean mathcommand-ctan.zip mathcommand-sources-complete.zip + +mathcommand-sources-complete.zip: clean + \rm -f mathcommand-sources-complete.zip + cp mathcommand-sources-complete.zip ../mathcommand-sources-complete-`date +%y-%m-%d_%H:%M`.zip + +mathcommand-ctan.zip: mathcommand.pdf mathcommand.sty mathcommand.ins README.md makefile + rm -f mathcommand-ctan.zip + rm -rf mathcommand + mkdir mathcommand + cp mathcommand.pdf mathcommand/ + cp mathcommand.dtx mathcommand/ + cp makefile mathcommand.ins README.md mathcommand/ + zip mathcommand-ctan.zip mathcommand/* + rm -rf mathcommand + diff --git a/Master/texmf-dist/doc/latex/mathcommand/mathcommand.pdf b/Master/texmf-dist/doc/latex/mathcommand/mathcommand.pdf Binary files differnew file mode 100644 index 00000000000..92dc6c75147 --- /dev/null +++ b/Master/texmf-dist/doc/latex/mathcommand/mathcommand.pdf |