diff options
author | Karl Berry <karl@freefriends.org> | 2022-01-22 21:03:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-01-22 21:03:20 +0000 |
commit | cdf946a4c2d4105eba2a5bec9a9608a3c2e178c3 (patch) | |
tree | 4537c299eafae52df1691ca9656c352563c3917f /Master/texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua | |
parent | 84657de6b123a17eb3af55b3ed14ee47c671d7c8 (diff) |
xindex (22jan22)
git-svn-id: svn://tug.org/texlive/trunk@61696 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua')
-rw-r--r-- | Master/texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/Master/texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua b/Master/texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua deleted file mode 100644 index d8950e3a40e..00000000000 --- a/Master/texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua +++ /dev/null @@ -1,93 +0,0 @@ ------------------------------------------------------------------------ --- FILE: xindex-cfg.lua --- DESCRIPTION: configuration file for xindex.lua --- REQUIREMENTS: --- AUTHOR: Herbert Voß --- LICENSE: LPPL1.3 --- --- $Id: xindex-danteedition.lua 15 2021-08-20 19:01:56Z hvoss $ ------------------------------------------------------------------------ - -if not modules then modules = { } end modules ['xindex-cfg'] = { - version = 0.34, - comment = "main configuration to xindex.lua", - author = "Herbert Voss", - copyright = "Herbert Voss", - license = "LPPL 1.3" -} - -itemPageDelimiter = "," -- Hello, 14 -compressPages = true -- something like 12--15, instead of 12,13,14,15. the |( ... |) syntax is still valid -fCompress = true -- 3f -> page 3, 4 and 3ff -> page 3, 4, 5 -minCompress = 3 -- 14--17 or -rangeSymbol = "--" -numericPage = true -- for non numerical pagenumbers, like "VI-17" -sublabels = {"", "-\\,", "--\\,", "---\\,"} -- for the (sub(sub(sub-items first one is for item -pageNoPrefixDel = "" -- a delimiter for page numbers like "VI-17" -- not used !!! -indexOpening = "" -- commands after \begin{theindex} -idxnewletter = "\\idxnewletter" -- Only valid if -n is not set -envStart = "\\begin{theindex}" -envStop = "\\end{theindex}" - ---[[ - Each character's position in this array-like table determines its 'priority'. - Several characters in the same slot have the same 'priority'. -]] -alphabet_lower = { -- for sorting - { ' ' }, -- only for internal tests - { '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', 'ž' } -} -alphabet_upper = { -- for sorting - { ' ' }, - { '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', 'Ž' } -} |