summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/xindy/modules/styles/vermeer.xdy
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-04-28 12:16:07 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-04-28 12:16:07 +0000
commit3b6edaaa89afea6c143c79fe374a428bb768a077 (patch)
tree9d3ed3015d946c4646b4a038db4f97719bee304b /Master/texmf-dist/xindy/modules/styles/vermeer.xdy
parent7569dae4400e292c6cf4da8dfc9435d7f923ac5c (diff)
xindy 2.5.0
git-svn-id: svn://tug.org/texlive/trunk@33716 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/xindy/modules/styles/vermeer.xdy')
-rw-r--r--Master/texmf-dist/xindy/modules/styles/vermeer.xdy89
1 files changed, 0 insertions, 89 deletions
diff --git a/Master/texmf-dist/xindy/modules/styles/vermeer.xdy b/Master/texmf-dist/xindy/modules/styles/vermeer.xdy
deleted file mode 100644
index cd447ced72d..00000000000
--- a/Master/texmf-dist/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: