diff options
author | Karl Berry <karl@freefriends.org> | 2015-12-06 23:51:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-12-06 23:51:53 +0000 |
commit | 48180ccf242a8408190bcd31f3a89c9d31e86cb8 (patch) | |
tree | 4895e27039b7c54eea6c74d1d9126fe0ab0e277c /Master/texmf-dist/source | |
parent | f68189f71d0a9a9a67cba3d61a6d3a1ce35ec832 (diff) |
reledmac (6dec15)
git-svn-id: svn://tug.org/texlive/trunk@39031 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/latex/reledmac/reledmac.dtx | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/Master/texmf-dist/source/latex/reledmac/reledmac.dtx b/Master/texmf-dist/source/latex/reledmac/reledmac.dtx index a23bf8b641b..3a1c95173b3 100644 --- a/Master/texmf-dist/source/latex/reledmac/reledmac.dtx +++ b/Master/texmf-dist/source/latex/reledmac/reledmac.dtx @@ -376,7 +376,7 @@ % \changes{v2.7.0}{2015/11/29}{Delete parenthesis after \protect\cs{SErefonlypage}.} % \changes{v2.7.0}{2015/11/29}{New setting commands: \protect\cs{setSErefonlypageprefixsingle} and \protect\cs{setSErefonlypageprefixmore}} % \changes{v2.7.0}{2015/11/29}{Debug \protect\cs{SErefonlypage} when referring to only one page.} -% +% \changes{v2.7.1}{2015/12/06}{Debug \protect\cs{Xbhookgroup} hooks executed on column footnote (moved to a larger group, to have indeed effect).} % \title{\Macpackage \\ % Typeset scholarly editions with \LaTeX\thanks{This file (\dtxfilename) % has version number \fileversion, last revised \filedate.}} @@ -1521,7 +1521,7 @@ % The default series order is the one called with the \verb+series+ option of the package, or, if this option is not used, A, B, C, D, E. % Series order determines footnotes order. % -% \DescribeMacro{seriesatbegin}\DescribeMacro{seriesatend} However in some specific cases, you need to change the series order at some point inside the document. +% \DescribeMacro{\seriesatbegin}\DescribeMacro{\seriesatend} However in some specific cases, you need to change the series order at some point inside the document. % You can use \protect\cs{seriesatbegin}\marg{s} to pull up a given series \meta{s} to the beginning, or \protect\cs{seriesatend}\marg{s} to push it down to the end. % \subsection{Position of critical and familiar footnotes} % \DescribeMacro{\fnpos}\DescribeMacro{\mpfnpos} @@ -1544,11 +1544,7 @@ % a list of letters separated by comma\,---\,depending on which option is applied. % If the optional argument is omitted or empty, the setting will apply to the entire series. % -% When a length (\meta{l}) is used, it can be stretchable: \verb|a plus b minus c|. -% The final length |m| is calculated by \LaTeX{} to have $a-c \leq m \leq a+b$ units. -% If you use some relative unit\footnote{Like \verb|em|, which is the width of an `m' in a given font.}, -% it will be relative to the font size of the footnote, except for commands concerning the place kept by the notes, including blank spaces. -% + % When a length, noted \meta{l}, is used, it can be stretchable: \verb|a plus b minus c|. The final length |m| is calculated by \LaTeX{} to have: $a-c \leq m \leq a+b$. If you use some relative unit\footnote{Like \verb|em| which is the width of an `m' in a given font.}, it will be relative to font size of the footnote, except for commands concerning the place kept by the notes --- including blank space. % % There is also name convention: @@ -2093,6 +2089,7 @@ % Consequently, it cannot be broken between two pages, even if you used these commands. % The debug is in the todolist. % \subsubsection{Width} +% \changes{v2.7.0}{2015/11/29}{New hooks: \protect\cs{Xhsize} and \protect\cs{hsizeX}} % \DescribeMacro{\Xhsize} % \DescribeMacro{\hsizeX} % \cs{Xhsize}\oarg{s}\marg{l} sets the total width of critical footnote. @@ -3460,7 +3457,7 @@ % \begin{macrocode} %<*code> \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{reledmac}[2015/11/29 v2.7.0 typeset critical edition]% +\ProvidesPackage{reledmac}[2015/12/06 v2.7.1 typeset critical edition]% % \end{macrocode} % % \subsection{Package options} @@ -9375,7 +9372,8 @@ % \protect\cs{rigidbalance} directly, without any re-boxing. % \begin{macrocode} \newcommand*{\threecolfootgroup}[1]{{\csuse{Xnotefontsize@#1}% - \noindent\csuse{Xtxtbeforenotes@#1}\csuse{Xbhookgroup@#1}}\par% + \noindent\csuse{Xtxtbeforenotes@#1}}% + \csuse{Xbhookgroup@#1}\par% \splittopskip=\ht\strutbox \expandafter \Xrigidbalance\csname #1footins\endcsname \thr@@ \splittopskip} @@ -9490,7 +9488,8 @@ % \end{macrocode} % \begin{macrocode} \newcommand*{\twocolfootgroup}[1]{{\csuse{Xnotefontsize@#1} - \noindent\csuse{Xtxtbeforenotes@#1}\csuse{Xbhookgroup@#1}}\par% + \noindent\csuse{Xtxtbeforenotes@#1}}% + \csuse{Xbhookgroup@#1}\par% \splittopskip=\ht\strutbox \expandafter \Xrigidbalance\csname #1footins\endcsname \tw@ \splittopskip} |