diff options
author | Karl Berry <karl@freefriends.org> | 2014-01-19 21:46:55 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-01-19 21:46:55 +0000 |
commit | 45f277a5975ca582ccae6b129d7280eb359f978b (patch) | |
tree | a0522fb8a1dea31eb3f9a60f909e2fcec3ecf25e /Master | |
parent | 06f907146b326df470e7a6a274c28349adea0c42 (diff) |
superiors (19jan14)
git-svn-id: svn://tug.org/texlive/trunk@32716 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/fonts/superiors/README | 9 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/superiors/superiors.sty | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/Master/texmf-dist/doc/fonts/superiors/README b/Master/texmf-dist/doc/fonts/superiors/README index c02303285d8..573d3b18d3c 100644 --- a/Master/texmf-dist/doc/fonts/superiors/README +++ b/Master/texmf-dist/doc/fonts/superiors/README @@ -1,8 +1,13 @@ This small package provides a means of adding to or modifying the superior figures used for footnote and endnote markers in any font collection. -Current version: 1.03 +Current version: 1.04 -This material is subject to the LaTeX Project Public License. See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html for the details of that license. +This material is subject to the LaTeX Project Public License. See +http://www.ctan.org/license/lppl1.3 +for the details of that license. + +Changes in 1.04 +1. Corrected the code to eliminate an unwanted space following the footnote mark. Changes in 1.03: 1. Changed code so that footnotes within minipages are not handled using superior figures, but use whatever was determined by \thempfootnote and the existing \@makefnmark. diff --git a/Master/texmf-dist/tex/latex/superiors/superiors.sty b/Master/texmf-dist/tex/latex/superiors/superiors.sty index f37f3fbe1cc..db6fb8a36b5 100644 --- a/Master/texmf-dist/tex/latex/superiors/superiors.sty +++ b/Master/texmf-dist/tex/latex/superiors/superiors.sty @@ -1,6 +1,6 @@ \NeedsTeXFormat{LaTeX2e} -\def\superiorsVersion{1.03} -\def\superiorsDate{2013/10/17} +\def\superiorsVersion{1.04} +\def\superiorsDate{2014/01/18} \ProvidesPackage{superiors}[\superiorsDate\space-\space\superiorsVersion superiors (License LPPL) Michael Sharpe] \RequirePackage{xkeyval} @@ -43,9 +43,9 @@ \def\f@@tn@te{footnote} \def\@makefnmark{% \ifx\@mpfn\f@@tn@te% we're not in a minipage - \hbox{\sustyle\hspace*{.04em}\@thefnmark} + \hbox{\sustyle\hspace*{.04em}\@thefnmark\hspace*{.03em}}% \else% minipage---use original def - \superiors@makefnmark + \superiors@makefnmark% \fi% } |