diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r-- | Master/texmf-dist/doc/latex/contracard/LICENSE | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/contracard/Makefile | 205 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/contracard/README | 33 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/contracard/README.md | 39 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/contracard/contracard.lod | 9 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/contracard/contracard.pdf | bin | 183316 -> 188440 bytes |
6 files changed, 5 insertions, 283 deletions
diff --git a/Master/texmf-dist/doc/latex/contracard/LICENSE b/Master/texmf-dist/doc/latex/contracard/LICENSE index 43d372e7df0..e94c3cd909b 100644 --- a/Master/texmf-dist/doc/latex/contracard/LICENSE +++ b/Master/texmf-dist/doc/latex/contracard/LICENSE @@ -1,5 +1,3 @@ -# License - Copyright 2013 Samuel Whited This project may be distributed and/or modified under the diff --git a/Master/texmf-dist/doc/latex/contracard/Makefile b/Master/texmf-dist/doc/latex/contracard/Makefile deleted file mode 100644 index e49635bd543..00000000000 --- a/Master/texmf-dist/doc/latex/contracard/Makefile +++ /dev/null @@ -1,205 +0,0 @@ -# Makefile for contracard. -# Copied almost exactly from the fontspec makefile. - -#### MAKEFILE CONFIG #### - -SHELL = /bin/sh -.SUFFIXES: -.SILENT: - -#### BEGIN #### - -help: - @echo 'CONTRACARD makefile targets:' - @echo ' ' - @echo ' help - (this message)' - @echo ' unpack - extracts all files' - @echo ' doc - compile documentation' - @echo ' gendoc - compile git-aware documentation' - @echo ' ctan - generate archive for CTAN' - @echo ' all - unpack & doc' - @echo ' world - all & ctan' - @echo ' clean - remove all generated and built files' - @echo ' preview - preview the documentation' - @echo ' ' - @echo ' install - install the complete class into your home texmf tree' - @echo ' cls-install - install the class code only' - @echo ' install TEXMFROOT=<texmf> - install the class into the path <texmf>' - - -NAME = contracard -DOC = $(NAME).pdf -DTX = $(NAME).dtx - -# Redefine this to print output if you need: -REDIRECT = > /dev/null - -# Files grouped by generation mode -COMPILED = $(DOC) -UNPACKED = $(NAME).cls -SOURCE = $(DTX) Makefile README LICENSE -GENERATED = $(COMPILED) $(UNPACKED) - -CTAN_FILES = $(SOURCE) $(COMPILED) - -UNPACKED_DOC = - -RUNFILES = $(filter-out $(UNPACKED_DOC), $(UNPACKED)) -DOCFILES = $(COMPILED) README LICENSE $(UNPACKED_DOC) -SRCFILES = $(DTX) Makefile - -ALL_FILES = $(RUNFILES) $(DOCFILES) $(SRCFILES) - -# Installation locations -FORMAT = latex -RUNDIR = $(TEXMFROOT)/tex/$(FORMAT)/$(NAME) -DOCDIR = $(TEXMFROOT)/doc/$(FORMAT)/$(NAME) -SRCDIR = $(TEXMFROOT)/source/$(FORMAT)/$(NAME) -TEXMFROOT = $(shell kpsewhich --var-value TEXMFHOME) - -CTAN_ZIP = $(NAME).zip -TDS_ZIP = $(NAME).tds.zip -ZIPS = $(CTAN_ZIP) $(TDS_ZIP) - -DO_LATEX = xelatex --interaction=nonstopmode $< $(REDIRECT) -DO_LATEX_WRITE18 = xelatex --shell-escape --interaction=nonstopmode $< $(REDIRECT) -DO_TEX = tex --interaction=nonstopmode $< $(REDIRECT) -DO_MAKEINDEX = makeindex -s gind.ist $(subst .dtx,,$<) $(REDIRECT) 2>&1 -DO_SPLITINDEX = splitindex $(subst .dtx,,$<) $(REDIRECT) 2>&1 -DO_MAKECHANGES = makeindex -s gglo.ist -o $(NAME).gls $(NAME).glo $< $(REDIRECT) 2>&1 - -all: $(GENERATED) -doc: $(COMPILED) -unpack: $(UNPACKED) -ctan: $(CTAN_ZIP) -tds: $(TDS_ZIP) -world: all ctan - -resources: by.png by-nc.png - -by.png: - wget http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png - -by-nc.png: - wget http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by-nc.png - -gendoc-offline: $(DTX) - @echo "Compiling documentation" - $(DO_LATEX_WRITE18) - $(DO_SPLITINDEX) - $(DO_MAKEINDEX) - $(DO_MAKECHANGES) - while ($(DO_LATEX_WRITE18) ; \ - grep -q "Rerun to get" $(NAME).log ) do true; \ - done - -gendoc: $(DTX) resources - @echo "Compiling documentation" - $(DO_LATEX_WRITE18) - $(DO_SPLITINDEX) - $(DO_MAKEINDEX) - $(DO_MAKECHANGES) - while ($(DO_LATEX_WRITE18) ; \ - grep -q "Rerun to get" $(NAME).log ) do true; \ - done - -COMMAND = command -v $(1) >/dev/null 2>&1 -preview: $(DOC) - ($(COMMAND) evince && evince $(NAME).pdf) || ($(COMMAND) open && open $(NAME).pdf) - -$(DOC): $(DTX) - @echo "Compiling documentation" - $(DO_LATEX_WRITE18) - $(DO_MAKEINDEX) - $(DO_MAKECHANGES) - while ($(DO_LATEX_WRITE18) ; \ - grep -q "Rerun to get" $(NAME).log ) do true; \ - done - - -$(UNPACKED): $(DTX) - @$(DO_TEX) - -$(CTAN_ZIP): $(CTAN_FILES) - @echo "Making $@ for CTAN upload." - @$(RM) -- $@ - @mkdir -p $(NAME)/ - @cp $^ $(NAME)/ - @zip -9 -f $@ $(NAME)/* >/dev/null - @rm -rf $(NAME)/ - -define run-install -@mkdir -p $(RUNDIR) && cp $(RUNFILES) $(RUNDIR) -@mkdir -p $(DOCDIR) && cp $(DOCFILES) $(DOCDIR) -@mkdir -p $(SRCDIR) && cp $(SRCFILES) $(SRCDIR) -endef - -define run-cls-install -@mkdir -p $(RUNDIR) && cp $(RUNFILES) $(RUNDIR) -endef - -$(TDS_ZIP): TEXMFROOT=./tmp-texmf -$(TDS_ZIP): $(ALL_FILES) - @echo "Making TDS-ready archive $@." - @$(RM) -- $@ - $(run-install) - @cd $(TEXMFROOT) && zip -9 ../$@ -r . >/dev/null - @$(RM) -r -- $(TEXMFROOT) - -# Rename the README for CTAN -README: README.md - cp $< $@ - -# Rename the LICENSE for CTAN -LICENSE: LICENSE.md - cp $< $@ - -.PHONY: install manifest clean mrproper - -install: $(ALL_FILES) - @if test ! -n "$(TEXMFROOT)" ; then \ - echo "Cannot locate your home texmf tree. Specify manually with\n\n make install TEXMFROOT=/path/to/texmf\n" ; \ - false ; \ - fi ; - @echo "Installing in '$(TEXMFROOT)'." - $(run-install) - -cls-install: $(RUNFILES) - @if test ! -n "$(TEXMFROOT)" ; then \ - echo "Cannot locate your home texmf tree. Specify manually with\n\n make install TEXMFROOT=/path/to/texmf\n" ; \ - false ; \ - fi ; - @echo "Installing in '$(TEXMFROOT)'." - $(run-install) - -manifest: - @echo "Source files:" - @for f in $(SOURCE); do echo $$f; done - @echo "" - @echo "Derived files:" - @for f in $(GENERATED); do echo $$f; done - -clean: - @$(RM) -- *.log *.aux *.toc *.idx *.ind *.ilg *.glo *.gls *.example *.out - @$(RM) -- *.synctex* *.tmp *.cls *.sty *.ins *.pdf *.dvi README LICENSE *.lot - @$(RM) -- *.lod *.png - @$(RM) -- $(GENERATED) $(ZIPS) - @$(RM) -- $(builddir)/* - - -############# -# TESTSUITE # -############# - -#### Needed to compile and make stuff #### - -builddir=build -lprefix=L -xprefix=X -both=F - -COPY = cp -a -MOVE = mv -f -COMPARE_OPTS = -density 300x300 -metric ae -fuzz 35% - -LTXSOURCE = $(NAME).cls diff --git a/Master/texmf-dist/doc/latex/contracard/README b/Master/texmf-dist/doc/latex/contracard/README index 0c52a7b8808..1b964792188 100644 --- a/Master/texmf-dist/doc/latex/contracard/README +++ b/Master/texmf-dist/doc/latex/contracard/README @@ -1,39 +1,16 @@ # Contra Card A LaTeX package for typesetting traditional contra and square dances, and a -class which generates calling cards for the same. +class which generates calling cards. ## Download -Development of this package occurs primarily on -[GitHub](https://github.com/SamWhited/contracard). -Issues and pull requests should be submitted there. +Development of this package occurs primarily at +https://git.sr.ht/~samwhited/contracard. +Patches should be submitted there. The current [release version](http://ctan.org/tex-archive/macros/latex/contrib/contracard) of -**Contra Card** and associated +Contra Card and associated [documentation](http://mirrors.ctan.org/macros/latex/contrib/contracard/contracard.pdf) [PDF] is available from [CTAN](http://ctan.org/pkg/contracard). - -## License - -Copyright 2012 Samuel Whited - -This file may be distributed and/or modified under the conditions of the LaTeX -Project Public License, either version 1.3c of this license or (at your option) -any later version. The latest version of this license can be found at: - -http://www.latex-project.org/lppl.txt - -and version 1.3c or later is part of all distributions of LaTeX version -2008/05/04 or later. - -This work has the LPPL maintenance status `maintained'. - -- Author: Sam Whited -- Maintainer: Sam Whited -- Website: https://blog.samwhited.com -- Contact: sam@samwhited.com - -This work consists of this file contracard.dtx and the derived files -`contracard.sty`, `contracard.cls`, `contracard.pdf`, `README.md`, and `README`. diff --git a/Master/texmf-dist/doc/latex/contracard/README.md b/Master/texmf-dist/doc/latex/contracard/README.md deleted file mode 100644 index 0c52a7b8808..00000000000 --- a/Master/texmf-dist/doc/latex/contracard/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# Contra Card - -A LaTeX package for typesetting traditional contra and square dances, and a -class which generates calling cards for the same. - -## Download - -Development of this package occurs primarily on -[GitHub](https://github.com/SamWhited/contracard). -Issues and pull requests should be submitted there. - -The current [release -version](http://ctan.org/tex-archive/macros/latex/contrib/contracard) of -**Contra Card** and associated -[documentation](http://mirrors.ctan.org/macros/latex/contrib/contracard/contracard.pdf) -[PDF] is available from [CTAN](http://ctan.org/pkg/contracard). - -## License - -Copyright 2012 Samuel Whited - -This file may be distributed and/or modified under the conditions of the LaTeX -Project Public License, either version 1.3c of this license or (at your option) -any later version. The latest version of this license can be found at: - -http://www.latex-project.org/lppl.txt - -and version 1.3c or later is part of all distributions of LaTeX version -2008/05/04 or later. - -This work has the LPPL maintenance status `maintained'. - -- Author: Sam Whited -- Maintainer: Sam Whited -- Website: https://blog.samwhited.com -- Contact: sam@samwhited.com - -This work consists of this file contracard.dtx and the derived files -`contracard.sty`, `contracard.cls`, `contracard.pdf`, `README.md`, and `README`. diff --git a/Master/texmf-dist/doc/latex/contracard/contracard.lod b/Master/texmf-dist/doc/latex/contracard/contracard.lod deleted file mode 100644 index f95fa926ad9..00000000000 --- a/Master/texmf-dist/doc/latex/contracard/contracard.lod +++ /dev/null @@ -1,9 +0,0 @@ -\contentsline {dance}{\numberline {1}\ignorespaces Monarch Grove\unskip }{1}{dance.1} -\contentsline {dance}{\numberline {2}\ignorespaces Lament To Sarah\unskip }{3}{dance.2} -\contentsline {dance}{\numberline {3}\ignorespaces Code's Compiling\unskip }{6}{dance.3} -\contentsline {dance}{\numberline {4}\ignorespaces Whirling Dervish\unskip }{7}{dance.4} -\contentsline {dance}{\numberline {5}\ignorespaces Turn Around Waltz\unskip }{8}{dance.5} -\contentsline {dance}{\numberline {6}\ignorespaces Untitled Blues \textnumero \ 1\unskip }{11}{dance.6} -\contentsline {dance}{\numberline {7}\ignorespaces Untitled Blues \textnumero \ 2\unskip }{12}{dance.7} -\contentsline {dance}{\numberline {8}\ignorespaces East Meets West\unskip }{19}{dance.8} -\contentsline {dance}{\numberline {9}\ignorespaces Snowball Shimmy\unskip }{22}{dance.9} diff --git a/Master/texmf-dist/doc/latex/contracard/contracard.pdf b/Master/texmf-dist/doc/latex/contracard/contracard.pdf Binary files differindex 04b2277716a..3827df3fd62 100644 --- a/Master/texmf-dist/doc/latex/contracard/contracard.pdf +++ b/Master/texmf-dist/doc/latex/contracard/contracard.pdf |