diff options
author | Karl Berry <karl@freefriends.org> | 2009-05-19 18:36:39 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-05-19 18:36:39 +0000 |
commit | 8b36748d305846db9cd0fc23569497a178dd4683 (patch) | |
tree | 720c5218762952e12c3e69917d3093e719dc3cfd /Master/texmf-dist/doc/metapost/mpman-ru/idx3.awk | |
parent | a105d37fbd235ef9e97bc383de505739fcde2712 (diff) |
move mpman-ru out of texmf-doc
git-svn-id: svn://tug.org/texlive/trunk@13248 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/metapost/mpman-ru/idx3.awk')
-rw-r--r-- | Master/texmf-dist/doc/metapost/mpman-ru/idx3.awk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/mpman-ru/idx3.awk b/Master/texmf-dist/doc/metapost/mpman-ru/idx3.awk new file mode 100644 index 00000000000..5a911c2087f --- /dev/null +++ b/Master/texmf-dist/doc/metapost/mpman-ru/idx3.awk @@ -0,0 +1,16 @@ +BEGIN { + print "\\begin{theindex}" + l=65 +} +{ + if (0+substr($0,1,3)>=l && pl!=l && index($0,"\\subitem")==0) { + print "\\indexspace" + l=0+substr($0,1,3) + pl=l++ + if (l==91) l=161 + } + print substr($0,index($0,"@@@")+4) +} +END { + print "\\end{theindex}" +} |