diff options
author | Karl Berry <karl@freefriends.org> | 2019-08-03 21:57:36 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-08-03 21:57:36 +0000 |
commit | 52cd63f1578cc8a3f810574d0602b98b5a0c5459 (patch) | |
tree | 01808e0dd8cd26b3332ca89133ed50d29560001c /Master/texmf-dist/source | |
parent | 8205a632507f4dec01ae55eecb85357b9aac6adb (diff) |
ncctools (3aug19)
git-svn-id: svn://tug.org/texlive/trunk@51810 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/latex/ncctools/manyfoot.dtx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Master/texmf-dist/source/latex/ncctools/manyfoot.dtx b/Master/texmf-dist/source/latex/ncctools/manyfoot.dtx index 42abc84677c..d66cc54e1db 100644 --- a/Master/texmf-dist/source/latex/ncctools/manyfoot.dtx +++ b/Master/texmf-dist/source/latex/ncctools/manyfoot.dtx @@ -4,7 +4,7 @@ %% %<package>\NeedsTeXFormat{LaTeX2e}[1993/12/01] %<package>\ProvidesPackage{manyfoot} -%<package> [2005/09/11 v1.10 Many Footnote Levels Package (NCC)] +%<package> [2019/08/03 v1.11 Many Footnote Levels Package (NCC)] % % \changes{v1.0}{1998/11/09}{Initial version} % \changes{v1.1}{1998/11/13}{Compatibility problems solved} @@ -28,6 +28,7 @@ % \changes{v1.9}{2005/02/10}{|\NCC@makemark| replaced with |\NCC@makefnmark|} % \changes{v1.9}{2005/05/11}{Introduce the |\SetFootnoteHook| command} % \changes{v1.10}{2005/09/11}{Remove overflow in calculation the fudge factor} +% \changes{v1.11}{2019/08/03}{Fix compatibility issues with multicol} % %<*driver> \let\makeindex\relax @@ -1283,12 +1284,15 @@ % \end{macrocode} % and finally we join it with |\footins| insert and decrease the % current priority to |-1|. +% \textit{Change request from Fank Mittelbach (version 1.11):} +% The |\footins| insert should be set globally +% for compatibility with the last version of multicol. % \begin{macrocode} \ifvoid\footins \let\footnoterule\MFL@currule - \setbox\footins\vbox{#3\unvbox#5}% + \global\setbox\footins\vbox{#3\unvbox#5}% \else - \setbox\footins\vbox{% + \global\setbox\footins\vbox{% \unvbox\footins\MFL@skip\MFL@currule#3\unvbox#5% }% \fi |