diff options
Diffstat (limited to 'Master/texmf-dist/tex/latex/parnotes')
-rw-r--r-- | Master/texmf-dist/tex/latex/parnotes/parnotes.sty | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/Master/texmf-dist/tex/latex/parnotes/parnotes.sty b/Master/texmf-dist/tex/latex/parnotes/parnotes.sty index 65ed4704610..d3d7eb8c641 100644 --- a/Master/texmf-dist/tex/latex/parnotes/parnotes.sty +++ b/Master/texmf-dist/tex/latex/parnotes/parnotes.sty @@ -1,6 +1,7 @@ % The parnotes package % Notes after every paragraph, or elsewhere % Copyright (c) 2016 Chelsea Hughes +% Copyright (c) 2019,2024 Frank Mittelbach % % This work is distributed under the LaTeX Project Public License, % version 1.3 or later, available at @@ -18,14 +19,18 @@ % % The package is currently unmainted, i.e. the above address exists but is not monitored % -% Small extensions in 2019 by Frank Mittelbach: +% Small extensions by Frank Mittelbach, see changes.txt for details +% + +% You might file issues on my Github repo for the package, but I do +% not actively maintain that package (unless I think something is a +% very serious bug), so a new maintainer is welcome +% +% https://github.com/FrankMittelbach/fmitex-parnotes % -% 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}[2019/07/23 rev. 3b Notes after every paragraph, or elsewhere] +\ProvidesPackage{parnotes}[2024/06/12 rev. 3c Notes after every paragraph, or elsewhere] % % These are the user-modifiable format commands @@ -34,12 +39,18 @@ % Format for parnotes - \PN@notes@shape is blank (\relax) by default \providecommand{\parnotefmt}[1]{\footnotesize% \PN@notes@shape\PN@narrower@optional\noindent #1} + % Number format (arabic, roman, etc.) for the parnote mark counter -\providecommand{\theparnotemark}{\arabic{parnotemark}} +%% FMi: will be set by \newcounter +%\providecommand{\theparnotemark}{\arabic{parnotemark}} +%% FMi -- end + % Minimum vertical space before and after parnotes \providecommand{\parnotevskip}{\medskipamount} + % Full command used between parnotes \providecommand{\parnoteintercmd}{\hspace{1em plus 0.3em minus 0.2em}} + % Basic formatting for parnote marks \providecommand{\parnotecusmarkfmt}[1]{\textsuperscript{#1}} @@ -52,6 +63,10 @@ \global\def\PN@text{} % Counter for parnote marks \newcounter{parnotemark} +%% FMi: in case this package is used with an old LaTeX format +\providecommand{\theparnotemark}{\arabic{parnotemark}} +%% FMi -- end + % autopn environment name \def\@PN@autopn{autopn} % True if currently setting parnotes |