summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/mnotes
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-04-23 22:08:45 +0000
committerKarl Berry <karl@freefriends.org>2013-04-23 22:08:45 +0000
commit31a5d4cf45c66bd5927d6f405c2e2f7b8ec8dc5c (patch)
tree7d00e73772a26fea78ca9e67edbfd03cae576168 /Master/texmf-dist/doc/latex/mnotes
parent63ae29c1bc0f8ede732afd7f7dcf9792f9e5f9c4 (diff)
mnotes (23apr13)
git-svn-id: svn://tug.org/texlive/trunk@30072 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/mnotes')
-rw-r--r--Master/texmf-dist/doc/latex/mnotes/Makefile57
-rw-r--r--Master/texmf-dist/doc/latex/mnotes/README25
-rw-r--r--Master/texmf-dist/doc/latex/mnotes/mnotes.pdfbin0 -> 207506 bytes
3 files changed, 82 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/mnotes/Makefile b/Master/texmf-dist/doc/latex/mnotes/Makefile
new file mode 100644
index 00000000000..0fb9568c543
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/mnotes/Makefile
@@ -0,0 +1,57 @@
+SHELL=/bin/bash
+NAME=mnotes
+VERSION=0.6
+DISTDIR=$(NAME)
+ARCHIVE_NAME=/tmp/$(NAME)-$(VERSION).tar.gz
+DISTFILES=$(NAME).dtx Makefile README $(NAME).ins $(NAME).pdf
+
+DEP=$(NAME).sty
+
+all: pdf
+
+ps: $(NAME).ps
+
+%.ps: %.dvi
+ dvips $(DVIPSOPT) $< -o $@
+
+pdf: $(NAME).pdf $(DEP)
+
+%.pdf: %.dtx
+ pdflatex $<
+ makeindex -s gglo.ist -o $(NAME).gls $(NAME).glo
+ makeindex -s gind.ist -o $(NAME).ind $(NAME).idx
+ pdflatex $<
+
+dist: $(DISTFILES)
+ rm -rf $(DISTDIR)
+ mkdir $(DISTDIR)
+ cp -aL --parents $(DISTFILES) $(DISTDIR)
+ tar cfvz $(ARCHIVE_NAME) $(DISTDIR)
+ rm -rf $(DISTDIR)
+
+clean:
+ rm -f $(NAME).{glo,log,toc,lot,lof,idx,ilg,ind,aux,blg,bbl,dvi}
+ rm -f *~
+
+cleandist: clean
+ rm -f $(NAME).{pdf,sty,ins}
+
+REFWARN = 'Rerun to get cross-references'
+LATEXMAX = 5
+
+%.dvi: %.dtx $(DEP)
+ latex $<
+ RUNS=$(LATEXMAX); \
+ while [ $$RUNS -gt 0 ] ; do \
+ if grep $(REFWARN) $*.log > /dev/null; \
+ then latex $< ; else break; fi; \
+ RUNS=`expr $$RUNS - 1`; \
+ done
+
+$(NAME).sty: $(NAME).ins FORCE
+ tex $(NAME).ins
+
+$(NAME).ins:
+ pdflatex $(NAME).dtx
+
+FORCE:
diff --git a/Master/texmf-dist/doc/latex/mnotes/README b/Master/texmf-dist/doc/latex/mnotes/README
new file mode 100644
index 00000000000..f2589780493
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/mnotes/README
@@ -0,0 +1,25 @@
+ MNOTES: a flexible package for annotating and commenting
+ ====== collaboratively written documents
+
+ Copyright (C) 2013 by S Luz <luzs@acm.org>
+
+ This work may be distributed and/or modified under the conditions of
+ the LaTeX Project Public License, either version 1.3 of this license
+ or (at your option) any later version. The latest version of this
+ license is in
+
+ http://www.latex-project.org/lppl.txt
+
+ and version 1.3 or later is part of all distributions of LaTeX
+ version 2003/12/01 or later.
+
+ INSTALLATION:
+
+ on Unix, run "make" to get the style file and the documentation;
+ Alternatively, to generate the driver mnotes.ins run
+
+ $ pdflatex mnotes.dtx
+
+ To generate the style file run
+
+ $ tex mnotes.ins
diff --git a/Master/texmf-dist/doc/latex/mnotes/mnotes.pdf b/Master/texmf-dist/doc/latex/mnotes/mnotes.pdf
new file mode 100644
index 00000000000..c69f0af2942
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/mnotes/mnotes.pdf
Binary files differ