summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/reledmac
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/reledmac')
-rw-r--r--Master/texmf-dist/source/latex/reledmac/reledmac.dtx29
1 files changed, 20 insertions, 9 deletions
diff --git a/Master/texmf-dist/source/latex/reledmac/reledmac.dtx b/Master/texmf-dist/source/latex/reledmac/reledmac.dtx
index d4650a858ab..064186d6e59 100644
--- a/Master/texmf-dist/source/latex/reledmac/reledmac.dtx
+++ b/Master/texmf-dist/source/latex/reledmac/reledmac.dtx
@@ -517,6 +517,7 @@
% \changes{v2.27.0}{2018/09/13}{Add \protect\cs{doinsidethislinehook}.}
% \changes{v2.27.1}{2018/10/12}{Fix spurious space in \protect\cs{hidenumbering}.}
% \changes{v2.28.0}{2018/11/30}{Familiar footnotes can take an optional argument to manually define the footnote mark.}
+% \changes{v2.28.1}{2018/12/22}{Fix bug with the alignment of the columns of two and three columns critical footnotes.}
% Typeset scholarly editions with \LaTeX\thanks{This file (\dtxfilename)
% has version number \fileversion, last revised \filedate.}}
%
@@ -4221,7 +4222,7 @@
% \begin{macrocode}
%<*code>
\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{reledmac}[2018/11/30 v2.28.0 typesetting critical editions]%
+\ProvidesPackage{reledmac}[2018/12/22 v2.28.1 typesetting critical editions]%
% \end{macrocode}
%
% \subsection{Package options}
@@ -11296,10 +11297,15 @@
% \protect\cs{rigidbalance} directly, without any re-boxing.
% \begin{macrocode}
\newcommand*{\threecolfootgroup}[1]{%
- \csuse{Xbhookgroup@#1}\par%
- \splittopskip=\ht\strutbox
- \expandafter
- \Xrigidbalance\csname #1footins\endcsname \thr@@ \splittopskip}
+ \begingroup%
+ \csuse{Xbhookgroup@#1}%
+ \csuse{Xnotefontsize@#1}%
+ \par%
+ \splittopskip=\ht\strutbox%
+ \expandafter%
+ \Xrigidbalance\csname #1footins\endcsname \thr@@ \splittopskip%
+ \endgroup%
+}%
% \end{macrocode}
% \end{macro}
%
@@ -11424,10 +11430,15 @@
}%
\newcommand*{\twocolfootgroup}[1]{%
- \csuse{Xbhookgroup@#1}\par%
- \splittopskip=\ht\strutbox
- \expandafter
- \Xrigidbalance\csname #1footins\endcsname \tw@ \splittopskip}
+ \begingroup%
+ \csuse{Xbhookgroup@#1}%
+ \csuse{Xnotefontsize@#1}%
+ \par%
+ \splittopskip=\ht\strutbox%
+ \expandafter%
+ \Xrigidbalance\csname #1footins\endcsname \tw@ \splittopskip%
+ \endgroup%
+}%
% \end{macrocode}
% \end{macro}