summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/footmisc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-03-07 21:56:15 +0000
committerKarl Berry <karl@freefriends.org>2022-03-07 21:56:15 +0000
commitdc7dd9b5324e230c9e11dd07980c0fb7d91dabef (patch)
treeeaa4394662e71ef2cdba92ace648955a0dd8a621 /Master/texmf-dist/source/latex/footmisc
parent824d717d6e7df6e748258e374a99dca3d531fae1 (diff)
footmisc (7mar22)
git-svn-id: svn://tug.org/texlive/trunk@62501 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/footmisc')
-rw-r--r--Master/texmf-dist/source/latex/footmisc/footmisc.dtx40
1 files changed, 34 insertions, 6 deletions
diff --git a/Master/texmf-dist/source/latex/footmisc/footmisc.dtx b/Master/texmf-dist/source/latex/footmisc/footmisc.dtx
index 2a9ea7bc134..c3a31d2e6a8 100644
--- a/Master/texmf-dist/source/latex/footmisc/footmisc.dtx
+++ b/Master/texmf-dist/source/latex/footmisc/footmisc.dtx
@@ -38,7 +38,7 @@
%<+package>\DeclareCurrentRelease{}{2022-02-14}
%<package>\ProvidesPackage{footmisc}%
%<*!debugins>
- [2022/02/14 v6.0b
+ [2022/03/07 v6.0c
%</!debugins>
%<package> a miscellany of footnote facilities%
%<*dtx>
@@ -410,8 +410,8 @@
%
% This is automatically corrected if \pkg{footmisc} is loaded with any
% of the options that deal with footnote placement, i.e.,
-% \texttt{abovefloats}, \texttt{belowfloats}, \texttt{bottom},
-% \texttt{bottomfloats}, or \texttt{bottomfootnotes}. In particular,
+% \texttt{abovefloats}, \texttt{belowfloats}, \texttt{bottom}, or
+% \texttt{bottomfloats}. In particular,
% if you want to have the standard \LaTeX{} placement (but with this
% strange behavior fixed, apply \texttt{abovefloats} (which is the
% normal order but with the bug fixed).
@@ -420,7 +420,7 @@
% \subsection{Option \texttt{marginal}}
%
% This option adjusts the position of footnote mark relative to the
-% start of the line in which they appear (the the option is
+% start of the line in which they appear (the option is
% incompatible with option \texttt{para}, for obvious reasons).
%
% When this option is in effect, the footnote is set
@@ -443,7 +443,7 @@
% This option sets the footnote mark flush with the margin, and makes
% the body of the footnote hang at an indentation of
% \cs{footnotemargin} (if that is a positive distance), or the width
-% of the marker (if \cs{footnotemargin}$\leq0$). The option code
+% of the marker (if \cs{footnotemargin} $\leq0$). The option code
% itself leaves \cs{footnotemargin} at its default value of 1.8em.
%
% The footnote itself may of course be longer than one paragraph; if
@@ -873,7 +873,7 @@
%
% \subsubsection{The \texttt{bottomfloats} option}
%
-% \begin{macro}{ds@bottomfloats,ds@bottomfootnotes}
+% \begin{macro}{ds@bottomfloats}
% This option is for case 2. By default the footnotes are above
% (close to the text).
% \begin{macrocode}
@@ -1858,6 +1858,34 @@
\ifFN@perpage
\RequirePackage{perpage}
\MakePerPage{footnote}
+% \end{macrocode}
+% Unfortunately \pkg{perpage} has a bug and doesn't handle founters
+% correctly which are part of a reset list of another counter,
+% e.g., it doesn't work correctly if you use the report class which
+% resets footnotes at each chapter start. As a result the first
+% footnote on the first page of a chapter starts with 2. We
+% therefore alter one \LaTeX{} internal if \pkg{perpage} is in use:
+% \changes{v6.0c}{2022/03/07}{Fix an issue in perpage packag (gh/03)}
+% \begin{macrocode}
+ \def\@stpelt#1{\global\csname c@#1\endcsname \m@ne
+ \stepcounter{#1}%
+ \setcounter{#1}{0}%
+ }
+% \end{macrocode}
+% The above code may look a bit odd: the \cs{stepcounter} sets
+% the counter to zero and then the \cs{setcounter} does the
+% same. The reason is that \cs{stepcounter} resets other counters
+% and when perpage is loaded this results in updating counters on
+% the reset list to 1, which is precisely the problem here. So
+% the second \cs{setcounter} undoes this if it happens.
+%
+% But to make this fully work we also need to update a suport
+% command in \pkg{perpage}:
+% \begin{macrocode}
+ \def\pp@cl@end@iii\stepcounter#1\setcounter#2#3{}
+% \end{macrocode}
+%
+% \begin{macrocode}
\fi
% \end{macrocode}
%