diff options
author | Karl Berry <karl@freefriends.org> | 2022-05-17 20:09:54 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-05-17 20:09:54 +0000 |
commit | bcf9eb7b3ed19eab26283585e9fe6b8c2bf7fac0 (patch) | |
tree | a6f19b966faf2dc0af1428782b0a650fe36ab897 /Master | |
parent | a3f647fa729d9b52433aa0405352ed6f5753fe32 (diff) |
adjmulticol (17may22)
git-svn-id: svn://tug.org/texlive/trunk@63320 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/adjmulticol/README | 12 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/adjmulticol/adjmulticol.pdf | bin | 266054 -> 266279 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/adjmulticol/sample.pdf | bin | 53024 -> 53027 bytes | |||
-rw-r--r-- | Master/texmf-dist/source/latex/adjmulticol/adjmulticol.dtx | 7 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/adjmulticol/adjmulticol.sty | 4 |
5 files changed, 12 insertions, 11 deletions
diff --git a/Master/texmf-dist/doc/latex/adjmulticol/README b/Master/texmf-dist/doc/latex/adjmulticol/README index 82761b3e430..caea99be65d 100644 --- a/Master/texmf-dist/doc/latex/adjmulticol/README +++ b/Master/texmf-dist/doc/latex/adjmulticol/README @@ -1,9 +1,7 @@ - Adjusting Margins for Multicolumn and Unicolumn Output +Adjusting Margins for Multicolumn and Unicolumn Output -This package provides an extension of the multicol package with the -option to change the margins for multicolumn and unicolumn layout. -The package understands the difference between the even and odd -margins for two side printing. +An extension to the multicol package for changing margins for +multicolumn layout and one column output Changes: @@ -15,4 +13,6 @@ Changes: v1.3 Big fix: disappearing material in one column output - v1.4 New version of bug fix with one column
\ No newline at end of file + v1.4 New version of bug fix with one column + + v1.5 Added space after one column material
\ No newline at end of file diff --git a/Master/texmf-dist/doc/latex/adjmulticol/adjmulticol.pdf b/Master/texmf-dist/doc/latex/adjmulticol/adjmulticol.pdf Binary files differindex 7e8514791de..d29761770b3 100644 --- a/Master/texmf-dist/doc/latex/adjmulticol/adjmulticol.pdf +++ b/Master/texmf-dist/doc/latex/adjmulticol/adjmulticol.pdf diff --git a/Master/texmf-dist/doc/latex/adjmulticol/sample.pdf b/Master/texmf-dist/doc/latex/adjmulticol/sample.pdf Binary files differindex b063dffc004..26d5861b87b 100644 --- a/Master/texmf-dist/doc/latex/adjmulticol/sample.pdf +++ b/Master/texmf-dist/doc/latex/adjmulticol/sample.pdf diff --git a/Master/texmf-dist/source/latex/adjmulticol/adjmulticol.dtx b/Master/texmf-dist/source/latex/adjmulticol/adjmulticol.dtx index 66d2f060e59..85877a8e527 100644 --- a/Master/texmf-dist/source/latex/adjmulticol/adjmulticol.dtx +++ b/Master/texmf-dist/source/latex/adjmulticol/adjmulticol.dtx @@ -308,7 +308,7 @@ %</gobble> %<style>\ProvidesPackage{adjmulticol} %<*style> -[2022/04/17 v1.4 Adjusted margins for multicolumn layout] +[2022/05/15 v1.5 Adjusted margins for multicolumn layout] % \end{macrocode} % % @@ -530,12 +530,13 @@ % \end{macro} % % \begin{macro}{\adjmc@process@ne@column} -% \changes{v1.4}{2022/04/17}{Added macro} +% \changes{v1.4}{2022/04/17}{Added macro} +% \changes{v1.5}{2022/05/15}{Added \cs{vfill}} % If we have one column, we do not need to balance it. Mostly stolen % from |multicol.sty| % \begin{macrocode} \def\adjmc@process@ne@column{% - \setbox\mult@firstbox\copy\mult@box} + \setbox\mult@firstbox\vbox{\unvbox\mult@box\vfill}} % \end{macrocode} % % diff --git a/Master/texmf-dist/tex/latex/adjmulticol/adjmulticol.sty b/Master/texmf-dist/tex/latex/adjmulticol/adjmulticol.sty index ac0af67c76c..f8a11b9abf0 100644 --- a/Master/texmf-dist/tex/latex/adjmulticol/adjmulticol.sty +++ b/Master/texmf-dist/tex/latex/adjmulticol/adjmulticol.sty @@ -107,7 +107,7 @@ %% \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{adjmulticol} -[2022/04/17 v1.4 Adjusted margins for multicolumn layout] +[2022/05/15 v1.5 Adjusted margins for multicolumn layout] \DeclareOption*{\PassOptionsToPackage{\CurrentOption}{multicol}} \ProcessOptions\relax \RequirePackage{multicol} @@ -184,7 +184,7 @@ \adjmc@page@sofar@orig \multicol@leftmargin=\adjmc@saved@leftmargin} \def\adjmc@process@ne@column{% - \setbox\mult@firstbox\copy\mult@box} + \setbox\mult@firstbox\vbox{\unvbox\mult@box\vfill}} \newenvironment{adjmulticols*}{% \ifinner \PackageWarning{multicol}% |