diff options
author | Karl Berry <karl@freefriends.org> | 2013-04-07 18:23:21 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-04-07 18:23:21 +0000 |
commit | fb0bf13304a356f197bfc1add17f98c07e96f17b (patch) | |
tree | c6d2367f3652378da3aeb1ca88ff8e2687ddea42 /Master/texmf-dist/xindy/modules/styles/basic.xdy | |
parent | 752012c605d34cd943795527a9738475a6958fcc (diff) |
texmf -> texmf-dist: xindy
git-svn-id: svn://tug.org/texlive/trunk@29713 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/xindy/modules/styles/basic.xdy')
-rw-r--r-- | Master/texmf-dist/xindy/modules/styles/basic.xdy | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Master/texmf-dist/xindy/modules/styles/basic.xdy b/Master/texmf-dist/xindy/modules/styles/basic.xdy new file mode 100644 index 00000000000..08df4bc66dc --- /dev/null +++ b/Master/texmf-dist/xindy/modules/styles/basic.xdy @@ -0,0 +1,36 @@ +;; $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. +;; |