diff options
Diffstat (limited to 'macros/latex/contrib/reledmac/reledmac.dtx')
-rw-r--r-- | macros/latex/contrib/reledmac/reledmac.dtx | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/macros/latex/contrib/reledmac/reledmac.dtx b/macros/latex/contrib/reledmac/reledmac.dtx index c5bb0685d8..a568f76f44 100644 --- a/macros/latex/contrib/reledmac/reledmac.dtx +++ b/macros/latex/contrib/reledmac/reledmac.dtx @@ -558,6 +558,8 @@ % \changes{v2.33.1}{2020/06/06}{Fix a spacing bug when the argument of \protect\cs{antilabe} contains more than one word.} % \changes{v2.34.0}{2020/06/24}{Add \protect\cs{Xpstartonlyfirst} and \protect\cs{Xstanzaonlyfirst}.} % \changes{v2.34.0}{2020/06/24}{Add \protect\cs{Xpstartseparator}.} +% \changes{v2.34.1}{2020/06/30}{Fix bug with page number when using stanazindentsrepetition, bug introduced in v2.33.0} +% \changes{v2.34.2}{2020/07/06}{Fix bug with tabular environment, in some specific use case, added in v2.32.7} % Typeset scholarly editions with \LaTeX\thanks{This file (\dtxfilename) % has version number \fileversion, last revised \filedate.}} % @@ -2736,7 +2738,7 @@ % They allow one to add any arbitrary code just before the footnotes are added in the list of footnotes. % The main use is to insert text direction code. % For example, if you edit right-to-left text with \package{bidi}, but want your critical footnote be left-to-right, use \cs{Xbeforeinserting}{\cs{LTR}}. -% You should also use \cs{Xwraplemma} to ensure your lemmas are right-to-left in a left-to-right paragraph (\reff{Xwraplemma})). +% You should also use \cs{Xwraplemma} to ensure your lemmas are right-to-left in a left-to-right paragraph (\reff{Xwraplemma}). % % Note that the changes are local to the footnote. % @@ -4398,7 +4400,7 @@ % \begin{macrocode} %<*code> \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{reledmac}[2020/06/24 v2.34.0 typesetting critical editions]% +\ProvidesPackage{reledmac}[2020/07/06 v2.34.2 typesetting critical editions]% % \end{macrocode} % % \subsection{Package options} @@ -15455,7 +15457,7 @@ % \begin{macro}{\newhooktoggle@series@reload} % \changes{v1.13.0}{2014/09/16}{Add \protect\cs{newhookcommand@toggle@reload}} % \protect\cs{newhookcommand@toggle@reload} does the same thing as \protect\cs{newhooktoggle@series} -% but the commands created by this macro also reload the series arrangement, depending of type os notes +% but the commands created by this macro also reload the series arrangement, depending of type of notes % \begin{macrocode} \newcommand{\newhooktoggle@series@reload}[2]{% \global\expandafter\newcommandx\expandafter*\csname #1\endcsname[2][1,2={true},usedefault]{% @@ -18810,12 +18812,13 @@ }% }{% \ifcsdef{sza@\number\stanza@modulo @}{% - \count0=\numexpr% + \parindent=\csname sza@% + \the\numexpr% \stanza@modulo% - 1% + \value{startstanzaindentsrepetition}% \relax% - \parindent=\csname sza@\number\count0 @\endcsname\stanzaindentbase% + @\endcsname\stanzaindentbase% \managestanza@modulo% }% {% @@ -19530,7 +19533,9 @@ % % \begin{macrocode} \newcommand{\l@dcollect@body}[1]{% - \\%Ensure that we don't have spurious indentation at the very first line, caused by some text before. + \ifvmode\else% + \\%Ensure that we don't have spurious indentation at the very first line, caused by some text before. + \fi% \l@denvbody{\expandafter#1\expandafter{\the\l@denvbody}}% \edef\processl@denvbody{\the\l@denvbody\noexpand\end{\@currenvir}}% \l@denvbody\@emptytoks \def\l@dbegin@stack{b}% |