summaryrefslogtreecommitdiff
path: root/Master/texmf/xindy/modules/styles
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/xindy/modules/styles')
-rw-r--r--Master/texmf/xindy/modules/styles/basic.xdy36
-rw-r--r--Master/texmf/xindy/modules/styles/example.xdy101
-rw-r--r--Master/texmf/xindy/modules/styles/makeidx.xdy148
-rw-r--r--Master/texmf/xindy/modules/styles/makeindex.xdy89
-rw-r--r--Master/texmf/xindy/modules/styles/vermeer.xdy89
5 files changed, 0 insertions, 463 deletions
diff --git a/Master/texmf/xindy/modules/styles/basic.xdy b/Master/texmf/xindy/modules/styles/basic.xdy
deleted file mode 100644
index 08df4bc66dc..00000000000
--- a/Master/texmf/xindy/modules/styles/basic.xdy
+++ /dev/null
@@ -1,36 +0,0 @@
-;; $Id: basic.xdy,v 1.2 2008/01/09 15:13:54 jschrod Exp $ -*- Lisp -*-
-;; ------------------------------------------------------------
-;; (history at end)
-;; Licensed under GPL, see README and LICENSE.
-
-
-;;;
-;;; Very basic xindy style, to get some TeX-like output at all.
-;;; Useful for testing without the whole texindy framework.
-;;; It assumes the alphabets to be handled elsewhere, by language modules.
-;;;
-
-(define-location-class "page-numbers" ("arabic-numbers"))
-(define-attributes ("default"))
-
-(markup-letter-group :open-head "~n~n \textbf{" :close-head "}~n"
- :capitalize)
-
-(markup-indexentry :open "~n \item " :depth 0)
-(markup-indexentry :open "~n \subitem " :depth 1)
-(markup-indexentry :open "~n \subsubitem " :depth 2)
-
-(markup-locclass-list :open "\quad ")
-(markup-locref-list :sep ", ")
-(markup-range :sep "--")
-
-
-;======================================================================
-;;
-;; $Log: basic.xdy,v $
-;; Revision 1.2 2008/01/09 15:13:54 jschrod
-;; Add another newline in front of letter groups.
-;;
-;; Revision 1.1 2006/08/05 15:58:11 jschrod
-;; Initial revision.
-;;
diff --git a/Master/texmf/xindy/modules/styles/example.xdy b/Master/texmf/xindy/modules/styles/example.xdy
deleted file mode 100644
index 24d9e0fea89..00000000000
--- a/Master/texmf/xindy/modules/styles/example.xdy
+++ /dev/null
@@ -1,101 +0,0 @@
-;; read inputenc rules
-(require "tex/inputenc/latin1.xdy")
-
-;; read language-specific (and encoding-specific) rule-sets
-(require "lang/spanish/traditional-latin1.xdy")
-
-;; apply rules left-to-right or right-to-left?
-;; run 0 run 1 run 2 run 3
-(define-sort-rule-orientations (forward backward forward forward))
-
-;; define order of sorting runs
-(use-rule-set :run 0
- :rule-set ("es-alphabetize" "es-ignore-special"))
-(use-rule-set :run 1
- :rule-set ("es-resolve-diacritics" "es-ignore-special"))
-(use-rule-set :run 2
- :rule-set ("es-resolve-case" "es-ignore-special"))
-(use-rule-set :run 3
- :rule-set ("es-resolve-special"))
-
-;; define other stuff
-(define-attributes ("default"))
-
-;; The description of the location-classes.
-;; Add more location classes as needed.
-
-(define-location-class "arabic-page-numbers" ("arabic-numbers"))
-(define-location-class "roman-page-numbers" ("roman-numbers-lowercase"))
-(define-location-class "Roman-page-numbers" ("roman-numbers-uppercase"))
-(define-location-class "alpha-page-numbers" ("alpha"))
-(define-location-class "Alpha-page-numbers" ("ALPHA"))
-
-;; The most frequently used cross reference class "see". Add more, if
-;; necessary.
-
-(define-crossref-class "see")
-(markup-crossref-list :open "\see{" :close "}{}" :class "see")
-
-;; In makeindex: page_precedence <string> "rnaRA"
-;; List all location classes appearing in your document.
-
-(define-location-class-order ("roman-page-numbers"
- "arabic-page-numbers"
- "alpha-page-numbers"
- "Roman-page-numbers"
- "Alpha-page-numbers"
- "see"))
-
-
-;; preamble <string> "\\begin{theindex}\n"
-;; postamble <string> "\n\n\\end{theindex}\n"
-
-(markup-index :open "\begin{theindex}~n"
- :close "~n~n\end{theindex}~n"
- :tree)
-
-;; These specifiers are not directly supported via a command-line
-;; switch as in makeindex. Add the appropriate markup-commands into
-;; the preamble.
-
-;; setpage_prefix <string> "~n \setcounter{page}{"
-;; setpage_suffix <string> "}~n"
-
-;; group_skip <string> "~n~n \indexspace~n"
-
-(markup-letter-group-list :sep "~n~n \indexspace~n")
-
-;; even though we comment out (%) the letter-group heading,
-;; the following is useful if you want to check the .ind-file
-(markup-letter-group :open-head "~n % ")
-
-;; The indexentries (item_<..> specifiers)
-
-(markup-indexentry :open "~n \item " :depth 0)
-(markup-indexentry :open "~n \subitem " :depth 1)
-(markup-indexentry :open "~n \subsubitem " :depth 2)
-
-;; Location-references
-
-;; delim_0 <string> ", "
-;; delim_1 <string> ", "
-;; delim_2 <string> ", "
-
-(markup-locclass-list :open ", " :sep ", ")
-
-;; delim_n <string> ", "
-
-(markup-locref-list :sep ", ")
-
-;; delim_r <string> "--"
-
-(markup-range :sep "--")
-
-;; That's all ;-)
-
-
-;; End
-
-;; Local Variables:
-;; mode: lisp
-;; End:
diff --git a/Master/texmf/xindy/modules/styles/makeidx.xdy b/Master/texmf/xindy/modules/styles/makeidx.xdy
deleted file mode 100644
index 3b2492dd871..00000000000
--- a/Master/texmf/xindy/modules/styles/makeidx.xdy
+++ /dev/null
@@ -1,148 +0,0 @@
-;; $Id: makeidx.xdy,v 1.1 1997/02/07 14:17:31 kehr Exp $
-;;
-;; This file implements the Output Style Specifiers for plain
-;; makeindex (see manpage of makeindex 2.x) in conjuction with
-;; TeX/LaTeX.
-;;
-;; The Input Style Specifiers of makeindex cannot de defined in a
-;; `xindy' style file. Use an appropriate version of the program
-;; `tex2xindy' which should be included with this distribution.
-;;
-;; Since `xindy' uses a different specification language than
-;; makeindex and some of the command-line options of makeindex are now
-;; only available as style-file commands, this file can only serve as
-;; a template that produces the default-markup of makeindex. However,
-;; it may be used as a starting point for further modification and
-;; specialization.
-;;
-;; The following values are taken from the source of the makeindex
-;; distribution (see file scanst.h and the manpage) for further
-;; details.
-;;
-
-;; Define all attributes appearing in your document. Your attributes
-;; are all encapsulators you use in your \index commands following the
-;; vertical bar sign `|'. For example `foo' is the attribute in the
-;; command \index{...|foo}. Here you specify the set of attributes
-;; that appear in your document, the order in which they appear in the
-;; index and which one superdes the other.
-;;
-;; Example: a) (define-attibutes (("default") ("bf") ("it")))
-;; b) (define-attibutes (("bf" "default")))
-;;
-;; The initial command is (change it accordingly):
-
-(define-attributes ("default"))
-
-;; The description of the location-classes.
-;; Add more location classes as needed.
-
-(define-location-class "arabic-page-numbers" ("arabic-numbers"))
-(define-location-class "roman-page-numbers" ("roman-numbers-lowercase"))
-(define-location-class "Roman-page-numbers" ("roman-numbers-uppercase"))
-(define-location-class "alpha-page-numbers" ("alpha"))
-(define-location-class "Alpha-page-numbers" ("ALPHA"))
-
-;; The most frequently used cross reference class "see". Add more, if
-;; necessary.
-
-(define-crossref-class "see")
-(markup-crossref-list :open "\see{" :close "}{}" :class "see")
-
-;; In makeindex: page_precedence <string> "rnaRA"
-;; List all location classes appearing in your document.
-
-(define-location-class-order ("roman-page-numbers"
- "arabic-page-numbers"
- "alpha-page-numbers"
- "Roman-page-numbers"
- "Alpha-page-numbers"
- "see"))
-
-
-;; preamble <string> "\\begin{theindex}\n"
-;; postamble <string> "\n\n\\end{theindex}\n"
-
-(markup-index :open "\begin{theindex}~n"
- :close "~n~n\end{theindex}~n"
- :tree)
-
-;; These specifiers are not directly supported via a command-line
-;; switch as in makeindex. Add the appropriate markup-commands into
-;; the preamble.
-
-;; setpage_prefix <string> "~n \setcounter{page}{"
-;; setpage_suffix <string> "}~n"
-
-;; group_skip <string> "~n~n \indexspace~n"
-
-(markup-letter-group-list :sep "~n~n \indexspace~n")
-
-;; The indexentries (item_<..> specifiers)
-
-(markup-indexentry :open "~n \item " :depth 0)
-(markup-indexentry :open "~n \subitem " :depth 1)
-(markup-indexentry :open "~n \subsubitem " :depth 2)
-
-;; Location-references
-
-;; delim_0 <string> ", "
-;; delim_1 <string> ", "
-;; delim_2 <string> ", "
-
-(markup-locclass-list :open ", " :sep ", ")
-
-;; delim_n <string> ", "
-
-(markup-locref-list :sep ", ")
-
-;; delim_r <string> "--"
-
-(markup-range :sep "--")
-
-;; Here follow all letter-groups. The short-cut notation is used here.
-
-(define-letter-groups
- ("a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m"
- "n" "o" "p" "q" "r" "s" "t" "u" "v" "w" "x" "y" "z"))
-
-;;
-;; The sort-rules map all letters to their lowercase counterpart.
-;;
-
-(sort-rule "A" "a")
-(sort-rule "B" "b")
-(sort-rule "C" "c")
-(sort-rule "D" "d")
-(sort-rule "E" "e")
-(sort-rule "F" "f")
-(sort-rule "G" "g")
-(sort-rule "H" "h")
-(sort-rule "I" "i")
-(sort-rule "J" "j")
-(sort-rule "K" "k")
-(sort-rule "L" "l")
-(sort-rule "M" "m")
-(sort-rule "N" "n")
-(sort-rule "O" "o")
-(sort-rule "P" "p")
-(sort-rule "Q" "q")
-(sort-rule "R" "r")
-(sort-rule "S" "s")
-(sort-rule "T" "t")
-(sort-rule "U" "u")
-(sort-rule "V" "v")
-(sort-rule "W" "w")
-(sort-rule "X" "x")
-(sort-rule "Y" "y")
-(sort-rule "Z" "z")
-
-
-;; That's all ;-)
-
-
-;; End
-
-;; Local Variables:
-;; mode: lisp
-;; End:
diff --git a/Master/texmf/xindy/modules/styles/makeindex.xdy b/Master/texmf/xindy/modules/styles/makeindex.xdy
deleted file mode 100644
index 0e625a627f3..00000000000
--- a/Master/texmf/xindy/modules/styles/makeindex.xdy
+++ /dev/null
@@ -1,89 +0,0 @@
-
-;; This file defines the index style 'makeindex', the default.
-;; Here should ONLY be definitions that determine what a generated
-;; index should look like, NOT the locale or sorting order or
-;; document processor used.
-
-
-;; define other stuff
-(define-attributes ("default" "hyperpage"))
-
-;; The description of the location-classes.
-;; Add more location classes as needed.
-
-(define-location-class "arabic-page-numbers" ("arabic-numbers"))
-(define-location-class "roman-page-numbers" ("roman-numbers-lowercase"))
-(define-location-class "Roman-page-numbers" ("roman-numbers-uppercase"))
-(define-location-class "alpha-page-numbers" ("alpha"))
-(define-location-class "Alpha-page-numbers" ("ALPHA"))
-
-;; The most frequently used cross reference class "see". Add more, if
-;; necessary.
-
-(define-crossref-class "see")
-(markup-crossref-list :open "\see{" :close "}{}" :class "see")
-(markup-locref :open "\hyperpage{" :close "}{}" :attr "hyperpage")
-
-;; In makeindex: page_precedence <string> "rnaRA"
-;; List all location classes appearing in your document.
-
-(define-location-class-order ("roman-page-numbers"
- "arabic-page-numbers"
- "alpha-page-numbers"
- "Roman-page-numbers"
- "Alpha-page-numbers"
- "see"))
-
-
-;; preamble <string> "\\begin{theindex}\n"
-;; postamble <string> "\n\n\\end{theindex}\n"
-
-(markup-index :open "\begin{theindex}~n"
- :close "~n~n\end{theindex}~n"
- :tree)
-
-;; These specifiers are not directly supported via a command-line
-;; switch as in makeindex. Add the appropriate markup-commands into
-;; the preamble.
-
-;; setpage_prefix <string> "~n \setcounter{page}{"
-;; setpage_suffix <string> "}~n"
-
-;; group_skip <string> "~n~n \indexspace~n"
-
-(markup-letter-group-list :sep "~n~n \indexspace~n")
-
-;; even though we comment out (%) the letter-group heading,
-;; the following is useful if you want to check the .ind-file
-(markup-letter-group :open-head "~n % ")
-
-;; The indexentries (item_<..> specifiers)
-
-(markup-indexentry :open "~n \item " :depth 0)
-(markup-indexentry :open "~n \subitem " :depth 1)
-(markup-indexentry :open "~n \subsubitem " :depth 2)
-
-;; Location-references
-
-;; delim_0 <string> ", "
-;; delim_1 <string> ", "
-;; delim_2 <string> ", "
-
-(markup-locclass-list :open ", " :sep ", ")
-
-;; delim_n <string> ", "
-
-(markup-locref-list :sep ", ")
-
-;; delim_r <string> "--"
-
-(markup-range :sep "--")
-
-;; That's all ;-)
-
-
-;; End
-
-;; Local Variables:
-;; mode: lisp
-;; End:
diff --git a/Master/texmf/xindy/modules/styles/vermeer.xdy b/Master/texmf/xindy/modules/styles/vermeer.xdy
deleted file mode 100644
index cd447ced72d..00000000000
--- a/Master/texmf/xindy/modules/styles/vermeer.xdy
+++ /dev/null
@@ -1,89 +0,0 @@
-
-;; This file defines the index style 'makeindex', the default.
-;; Here should ONLY be definitions that determine what a generated
-;; index should look like, NOT the locale or sorting order or
-;; document processor used.
-
-
-;; define other stuff
-(define-attributes ("default" "hyperpage"))
-
-;; The description of the location-classes.
-;; Add more location classes as needed.
-
-(define-location-class "arabic-page-numbers" ("arabic-numbers"))
-(define-location-class "roman-page-numbers" ("roman-numbers-lowercase"))
-(define-location-class "Roman-page-numbers" ("roman-numbers-uppercase"))
-(define-location-class "alpha-page-numbers" ("alpha"))
-(define-location-class "Alpha-page-numbers" ("ALPHA"))
-
-;; The most frequently used cross reference class "see". Add more, if
-;; necessary.
-
-(define-crossref-class "see")
-(markup-crossref-list :open "\see{" :close "}{}" :class "see")
-(markup-locref :open "\hyperpage{" :close "}{}" :attr "hyperpage")
-
-;; In makeindex: page_precedence <string> "rnaRA"
-;; List all location classes appearing in your document.
-
-(define-location-class-order ("roman-page-numbers"
- "arabic-page-numbers"
- "alpha-page-numbers"
- "Roman-page-numbers"
- "Alpha-page-numbers"
- "see"))
-
-
-;; preamble <string> "\\begin{theindex}\n"
-;; postamble <string> "\n\n\\end{theindex}\n"
-
-(markup-index :open "\begin{theindex}~n"
- :close "~n~n\end{theindex}~n"
- :tree)
-
-;; These specifiers are not directly supported via a command-line
-;; switch as in makeindex. Add the appropriate markup-commands into
-;; the preamble.
-
-;; setpage_prefix <string> "~n \setcounter{page}{"
-;; setpage_suffix <string> "}~n"
-
-;; group_skip <string> "~n~n \indexspace~n"
-
-(markup-letter-group-list :sep "~n~n \indexspace~n")
-
-;; even though we comment out (%) the letter-group heading,
-;; the following is useful if you want to check the .ind-file
-(markup-letter-group :open-head "~n \textbf{[ " :close-head " ]}")
-
-;; The indexentries (item_<..> specifiers)
-
-(markup-indexentry :open "~n \item " :depth 0)
-(markup-indexentry :open "~n \subitem " :depth 1)
-(markup-indexentry :open "~n \subsubitem " :depth 2)
-
-;; Location-references
-
-;; delim_0 <string> ", "
-;; delim_1 <string> ", "
-;; delim_2 <string> ", "
-
-(markup-locclass-list :open ", " :sep ", ")
-
-;; delim_n <string> ", "
-
-(markup-locref-list :sep ", ")
-
-;; delim_r <string> "--"
-
-(markup-range :sep "--")
-
-;; That's all ;-)
-
-
-;; End
-
-;; Local Variables:
-;; mode: lisp
-;; End: