summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/matc3
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-04-05 23:12:53 +0000
committerKarl Berry <karl@freefriends.org>2013-04-05 23:12:53 +0000
commite6d12506aba07d033b9c475c6a12dd28277d828a (patch)
treeb4f2e3c8edb36f979705812bf439376902b53a5a /Master/texmf-dist/doc/latex/matc3
parent3df1dc48dcf0b31ba27b2fffae1a0a1915ec4a11 (diff)
matc3 (5apr13)
git-svn-id: svn://tug.org/texlive/trunk@29686 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/matc3')
-rwxr-xr-xMaster/texmf-dist/doc/latex/matc3/Makefile104
-rw-r--r--Master/texmf-dist/doc/latex/matc3/README28
-rw-r--r--Master/texmf-dist/doc/latex/matc3/matC3.pdfbin0 -> 439507 bytes
3 files changed, 132 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/matc3/Makefile b/Master/texmf-dist/doc/latex/matc3/Makefile
new file mode 100755
index 00000000000..28af502bde1
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/matc3/Makefile
@@ -0,0 +1,104 @@
+# Makefile per il pacchetto matC3
+# (c) 2013 Dimitrios Vrettos - d.vrettos@gmail.com
+# v1.0 -- 2013/04/05
+
+NAME = matC3
+INS = $(NAME).ins
+DTX = $(NAME).dtx
+IND = $(NAME).ind
+DOC = $(NAME).pdf
+IDX = $(NAME).idx
+GLS = $(NAME).gls
+GLO = $(NAME).glo
+
+PDFLATEX = pdflatex --shell-escape
+MAKEINDEX = makeindex -s gind.ist -o $(IND) $(IDX) && \
+ makeindex -s gglo.ist -o $(GLS) $(GLO)
+
+FILE_CLEAN = *.aux *.idx *.ilg *.ind *.log *.glo *.gls *.toc *.log *~* *backup
+
+VERSION = 1_0
+TAR = $(NAME)-$(VERSION).tar.gz
+ZIP = $(NAME)-$(VERSION).zip
+
+TEXMFHOME = `kpsewhich --expand-path='$$TEXMFHOME'`
+INSDIR = $(TEXMFHOME)/tex/latex/$(NAME)
+DOCDIR = $(TEXMFHOME)/doc/latex/$(NAME)
+SRCDIR = $(TEXMFHOME)/source/latex/$(NAME)
+
+.SILENT: clean dist-tar dist-zip directories help quick-install install uninstall
+
+help:
+ echo ''
+ echo 'Makefile targets:'
+ echo ''
+ echo " help - Questo messaggio"
+ echo ' quick-install - Installa pacchetto, documentazione e sorgenti senza compilarli'
+ echo ' install - Prima compila pacchetto, documentazione e sorgenti e poi li installa'
+ echo ' uninstall - Disinstallazione completa'
+ echo ' pdf - Crea solo la documentazione senza installarla'
+ echo ' clean - Rimuove i file intermediari'
+ echo ' dist-tar - Crea una distibuzione (.tar.gz) del pacchetto'
+ echo ' dist-zip - Crea una distibuzione (.zip) del pacchetto'
+ echo ''
+
+ins: $(INS)
+ latex $<
+
+pdf: $(DTX)
+ $(PDFLATEX) $<
+ $(MAKEINDEX)
+ $(PDFLATEX) $<
+ $(PDFLATEX) $<
+ $(PDFLATEX) $<
+
+clean:
+ rm -f $(FILE_CLEAN)
+
+dist-tar: clean
+ rm -f $(TAR)
+ tar --exclude '*.zip' -zcvf $(TAR) *
+
+dist-zip: clean
+ rm -f $(ZIP)
+ zip -r $(ZIP) . -x '*.tar.gz'
+
+all: ins pdf clean
+
+directories:
+ if [ ! -d $(INSDIR) ]; then \
+ mkdir -p $(INSDIR); \
+ fi
+ if [ ! -d $(DOCDIR) ]; then \
+ mkdir -p $(DOCDIR); \
+ fi
+ if [ ! -d $(SRCDIR) ] ; then \
+ mkdir -p $(SRCDIR) ; \
+ fi
+
+quick-install: directories
+ install -m644 $(NAME).sty $(INSDIR)
+ install -m644 $(DOC) README $(DOCDIR)
+ install -m644 $(INS) $(DTX) Makefile $(SRCDIR)
+ texhash
+
+
+install: all directories
+ install -m644 $(NAME).sty $(INSDIR)
+ install -m644 $(DOC) README $(DOCDIR)
+ install -m644 $(INS) $(DTX) Makefile $(SRCDIR)
+ texhash
+
+uninstall:
+ if [ -d $(INSDIR) ] ; then \
+ rm -rf $(INSDIR); \
+ fi
+ if [ -d $(DOCDIR) ] ; then \
+ rm -rf $(DOCDIR); \
+ fi
+ if [ -d $(SRCDIR) ] ; then \
+ rm -rf $(SRCDIR) ; \
+ fi
+ texhash
+
+# End of Makefile
diff --git a/Master/texmf-dist/doc/latex/matc3/README b/Master/texmf-dist/doc/latex/matc3/README
new file mode 100644
index 00000000000..fb88aa89cae
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/matc3/README
@@ -0,0 +1,28 @@
+---------------------------------------------------------------
+matC3 --- Package for the textbooks of MatematicaC3
+Author: Dimitrios Vrettos
+E-mail: d.vrettos@gmail.com
+
+Released under the LaTeX Project Public License v1.3c or later
+See http://www.latex-project.org/lppl.txt
+
+This work consists of the files:
+ README (this file)
+ matC3.dtx
+ matC3.ins
+ Makefile
+and the derived files:
+ matC3.sty
+ matC3.pdf
+
+The distribution consists of the following files:
+ README (this file)
+ matC3.dtx
+ matC3.ins
+ matC3.sty
+ matC3.pdf (user manual, in italian)
+ Makefile
+
+Please read the documentation (matC3.pdf, in italian) for
+installation and usage tips.
+---------------------------------------------------------------
diff --git a/Master/texmf-dist/doc/latex/matc3/matC3.pdf b/Master/texmf-dist/doc/latex/matc3/matC3.pdf
new file mode 100644
index 00000000000..5b342c6e843
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/matc3/matC3.pdf
Binary files differ