summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/eledmac/eledpar.dtx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-01-16 23:22:59 +0000
committerKarl Berry <karl@freefriends.org>2015-01-16 23:22:59 +0000
commit99552c8035c88f114240fe666033aa77db869b39 (patch)
tree3bdacb1c28b6f207b0ef686317b788192204ffa7 /Master/texmf-dist/source/latex/eledmac/eledpar.dtx
parent8b5dea01ab72973a3e09ee9926efede385f68319 (diff)
eledmac (16jan15)
git-svn-id: svn://tug.org/texlive/trunk@36073 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/eledmac/eledpar.dtx')
-rw-r--r--Master/texmf-dist/source/latex/eledmac/eledpar.dtx23
1 files changed, 8 insertions, 15 deletions
diff --git a/Master/texmf-dist/source/latex/eledmac/eledpar.dtx b/Master/texmf-dist/source/latex/eledmac/eledpar.dtx
index e69406fd3f4..6a02faea231 100644
--- a/Master/texmf-dist/source/latex/eledmac/eledpar.dtx
+++ b/Master/texmf-dist/source/latex/eledmac/eledpar.dtx
@@ -51,7 +51,7 @@
%
% \fi
%
-% \CheckSum{4817}
+% \CheckSum{4802}
%
% \makeatletter
% \newcommand*{\DescribeIt}{\leavevmode\@bsphack\begingroup\MakePrivateLetters
@@ -872,7 +872,7 @@
% \begin{macrocode}
%<*code>
\NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{eledpar}[2015/01/12 v1.10.0 eledmac extension for parallel texts]%
+\ProvidesPackage{eledpar}[2015/01/16 v1.10.1 eledmac extension for parallel texts]%
% \end{macrocode}
% With the option `shiftedpstarts' a long pstart one the left side (or in the right side) don't make a blank on the corresponding pstart, but the blank is put on the bottom of the page. Consequently, the pstarts on the parallel pages are shifted, but the shifted stop at every end of pages.
@@ -2076,7 +2076,7 @@
% macro. It is called by \cs{beginnumberingR} and performs
% all the line-list operations needed at the start of a section.
% Its argument is the name of the line-list file.
-% \changes{v1.4.2}{2013/08/25}{Open / close immediatly the line-list file when in minipage, except if the minipage is a ledgroup.}
+% \changes{v1.10.1}{2015/01/16}{Revert modification of 1.4.2 which makes bug with numbering. Leave vertical mode to solve spurious space before minipage.}
% \begin{macrocode}
\newcommand*{\line@list@stuffR}[1]{%
\read@linelist{#1}%
@@ -2085,18 +2085,11 @@
\global\first@linenum@out@Rfalse
\immediate\openout\linenum@outR=#1
\else
- \if@minipage%
- \if@ledgroup%
- \closeout\linenum@outR
- \openout\linenum@outR=#1
- \else
- \immediate\closeout\linenum@outR
- \immediate\openout\linenum@outR=#1\relax
- \fi
- \else
- \closeout\linenum@outR%
- \openout\linenum@outR=#1\relax%
- \fi
+ \if@minipage%
+ \leavevmode%
+ \fi%
+ \closeout\linenum@outR%
+ \openout\linenum@outR=#1%
\fi}
% \end{macrocode}