summaryrefslogtreecommitdiff
path: root/macros/generic/schemata/README
diff options
context:
space:
mode:
Diffstat (limited to 'macros/generic/schemata/README')
-rw-r--r--macros/generic/schemata/README79
1 files changed, 79 insertions, 0 deletions
diff --git a/macros/generic/schemata/README b/macros/generic/schemata/README
new file mode 100644
index 0000000000..b3a599bae3
--- /dev/null
+++ b/macros/generic/schemata/README
@@ -0,0 +1,79 @@
+|
+--------:| ----------------------------------------------------------------
+schemata:| Generic package to aid construction of topical categories
+ Author:| Charles P. Schaum
+ E-mail:| charles dot schaum at comcast dot net
+ License:| Released under the LaTeX Project Public License v1.3c or later
+ See:| http://www.latex-project.org/lppl.txt
+
+Short description:
+The schemata package helps the creation of topical outlines that illustrate the breakdown of concepts and categories in academic texts from the late medieval to early modern periods.
+
+Files Distribution
+
+README This file
+schemata.pdf Documentation
+
+Makefile Automates building with GNU make 3.81
+schemata.dtx Documented LaTeX file containing both code and documentation
+
+Installation
+
+Unpack schemata-XX.zip in an appropriate directory.
+
+Note that the instructions below assume that you are using a *nix-
+compatible computer. If that is otherwise, you will need to modify
+these instructions to your needs.
+
+If you have a make utility compatible with GNU make you can type
+
+make inst
+
+to install the package into your $TEXMFHOME tree or
+
+make install
+
+to install the package into your $TEXMFLOCAL tree for all users.
+
+Manually, you can generate the package files. First you generate the
+installer driver, README, and style files, with a preliminary PDF:
+
+pdflatex -shell-escape -recorder -interaction=batchmode schemata.dtx
+
+Next you generate the PDF with a table of contents and all cross-references
+validated, so that the index entries will not move:
+
+pdflatex --recorder --interaction=nonstopmode schemata.dtx
+
+The next commands generate the glossary/index and final pdf file
+
+makeindex -q -s gglo.ist -o schemata.gls schemata.glo
+makeindex -q -s gind.ist -o schemata.ind schemata.idx
+pdflatex --recorder --interaction=nonstopmode schemata.dtx
+pdflatex --recorder --interaction=nonstopmode schemata.dtx
+
+Normally you create the following manual installation directories for user:
+
+$TEXMFHOME/source/generic/schemata dtx file
+$TEXMFHOME/tex/generic/schemata sty file
+$TEXMFHOME/doc/generic/schemata pdf file
+
+and you create the following manual installation directories for local site:
+
+$TEXMFLOCAL/source/generic/schemata dtx file
+$TEXMFLOCAL/tex/generic/schemata sty file
+$TEXMFLOCAL/doc/generic/schemata pdf file
+
+The above environment variables often are /usr/local/texlive/texmf-local for
+$TEXMFLOCAL and ~/texmf for $TEXMFHOME.
+
+Run mktexlsr with the appropriate level of permissions to complete the install.
+
+This packages works with LaTeX and plain TeX.
+
+License
+
+This material is subject to the LaTeX Project Public License:
+http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
+
+Happy TeXing!