summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-10-28 20:55:51 +0000
committerKarl Berry <karl@freefriends.org>2019-10-28 20:55:51 +0000
commitbfa61c528ebdb39919639835451f3187c4c65eb5 (patch)
tree78edbb148efaf1fa491047f1c09f43f2810746c5 /Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua
parente6744059f83f9e9b758c2a10764f306b952c9a7c (diff)
xindex (28oct19)
git-svn-id: svn://tug.org/texlive/trunk@52551 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua')
-rw-r--r--Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua16
1 files changed, 12 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua b/Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua
index 2b5fd10dfa8..7b2dba332cf 100644
--- a/Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua
+++ b/Master/texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua
@@ -9,7 +9,7 @@
-- configuration for index files of the Heidelberger Akademie der Wissenschaften
if not modules then modules = { } end modules ['xindex-HAdW-eKO'] = {
- version = 0.16,
+ version = 0.18,
comment = "configuration to xindex.lua",
author = "Herbert Voss",
copyright = "Herbert Voss",
@@ -31,6 +31,13 @@ idxnewletter = "\\textbf" -- Only valid if -n is not set
case_sensitive = false -- speeds up running
+folium = {
+ de = {"f.", "ff."},
+ en = {"f.", "ff."},
+ fr = {"\\,sq","\\,sqq"},
+}
+
+
--[[
Each character's position in this array-like table determines its 'priority'.
Several characters in the same slot have the same 'priority'.
@@ -55,7 +62,7 @@ alphabet_lower = { -- for sorting
{ 'p' },
{ 'q' },
{ 'r' },
- { 's' },
+ { 's', 'ß' },
{ 't' },
{ 'u', 'ú', 'ù', 'ü' },
{ 'v' },
@@ -94,6 +101,8 @@ alphabet_upper = { -- for sorting
{ 'Z' }
}
+--alphabet_lower_map = CreateCharListMap(alphabet_lower)-- jetzt in xindex.lua
+--alphabet_upper_map = CreateCharListMap(alphabet_upper)
--\indexentry{Ackers, Carolus}{VII/1-715}
--\indexentry{Bremen!Adalbert I. von, Erzbischof}{VII/2/1-948}
@@ -215,7 +224,7 @@ end
function replaceRomanB(r)
local i = romanToNumber(r)
if i then return "!//"..string.format("%05d",i).."//."
- else return r
+ else return ("!"..r..".") -- to catch something Neuneburg!a.d. Weichsel
end
end
@@ -315,4 +324,3 @@ function specialGetPageList(v,hyperpage)
end
end
-