diff options
author | Karl Berry <karl@freefriends.org> | 2019-07-24 21:30:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-07-24 21:30:54 +0000 |
commit | 9768a4c52a280dad3551f01aeca8bfacb7207e60 (patch) | |
tree | 9e8750bdd5d9b4552ce4e8ab3b21896e5498afa9 /Master/texmf-dist/tex/latex/parnotes | |
parent | 992ade90cf77348b889df8f5cbc736b537d3a839 (diff) |
parnotes (24jul19)
git-svn-id: svn://tug.org/texlive/trunk@51720 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/parnotes')
-rw-r--r-- | Master/texmf-dist/tex/latex/parnotes/parnotes.sty | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/latex/parnotes/parnotes.sty b/Master/texmf-dist/tex/latex/parnotes/parnotes.sty index e5c3f68f5b6..65ed4704610 100644 --- a/Master/texmf-dist/tex/latex/parnotes/parnotes.sty +++ b/Master/texmf-dist/tex/latex/parnotes/parnotes.sty @@ -13,9 +13,19 @@ % http://tex.stackexchange.com/questions/34746/ % % Thanks to Stack Exchange users Ahmed Musa, Bruno Le Floch, and David Carlisle. +% +% ----------------------------- +% +% The package is currently unmainted, i.e. the above address exists but is not monitored +% +% Small extensions in 2019 by Frank Mittelbach: +% +% option reset (alias for restart to match other packages) +% option alph (for alph style notes instead of arabic) +% option symbol (for fnsymbol style notes) \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{parnotes}[2016/08/15 rev. 3 Notes after every paragraph, or elsewhere] +\ProvidesPackage{parnotes}[2019/07/23 rev. 3b Notes after every paragraph, or elsewhere] % % These are the user-modifiable format commands @@ -54,10 +64,15 @@ % \let\PN@reset@optional\relax \DeclareOption{restart}{\def\PN@reset@optional{\parnotereset}} +\DeclareOption{reset}{\def\PN@reset@optional{\parnotereset}} %FMi alternative name % % Parnote marks are arabic by default, but an option changes them to roman % \DeclareOption{roman}{\renewcommand\theparnotemark{\roman{parnotemark}}} +%%FMi +\DeclareOption{alph}{\renewcommand\theparnotemark{\alph{parnotemark}}} +\DeclareOption{symbol}{\renewcommand\theparnotemark{\fnsymbol{parnotemark}}} +%%FMi -- end % breakwithin just changes \parnoteintercmd \DeclareOption{breakwithin}{\renewcommand{\parnoteintercmd}{\\}} % And indentafter just clears \PN@disable@indent |