diff options
author | Karl Berry <karl@freefriends.org> | 2010-10-30 00:06:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-10-30 00:06:56 +0000 |
commit | a6fa0993dd81043316c9ca002611684a40c29d6d (patch) | |
tree | 5c16bc6b87ffb51fe1e8f5fd10165adda96011e9 /Master/texmf-dist/source/latex/latex-tds/patch | |
parent | 36f25afc3c202a82f7f7a7f846b1d39247c4cada (diff) |
latex-tds, via latex-tds (27oct10)
git-svn-id: svn://tug.org/texlive/trunk@20251 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/latex-tds/patch')
-rw-r--r-- | Master/texmf-dist/source/latex/latex-tds/patch/source2e.tex.diff | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/latex-tds/patch/source2e.tex.diff b/Master/texmf-dist/source/latex/latex-tds/patch/source2e.tex.diff new file mode 100644 index 00000000000..0f8d7c15fe7 --- /dev/null +++ b/Master/texmf-dist/source/latex/latex-tds/patch/source2e.tex.diff @@ -0,0 +1,68 @@ +*** source2e.tex.org 2009-09-25 09:56:20.000000000 +0200 +--- source2e.tex 2010-05-04 22:17:43.000000000 +0200 +*************** +*** 71,76 **** +--- 71,81 ---- + + \documentclass{ltxdoc} + ++ \newdimen\OldHeadHeight ++ \OldHeadHeight=\headheight ++ \newdimen\OldHeadSep ++ \OldHeadSep=\headsep ++ + \listfiles + + % Do not index some TeX primitives, and some common plain TeX commands. +*************** +*** 301,306 **** +--- 306,325 ---- + \clearpage + \pagestyle{headings} + ++ \makeatletter ++ \headheight=\OldHeadHeight ++ \headsep=\OldHeadSep ++ \addtolength{\textheight}{-\headheight} ++ \addtolength{\textheight}{-\headsep} ++ \addtolength{\textheight}{\footskip} ++ \newdimen\OldFootSkip ++ \OldFootSkip=\footskip ++ \footskip=\z@ ++ \vsize=\textheight ++ \@colht\textheight ++ \@colroom\textheight ++ \makeatother ++ + % Make TeX shut up. + \hbadness=10000 + \newcount\hbadness +*************** +*** 315,320 **** +--- 334,359 ---- + + \clearpage + ++ \makeatletter ++ \footskip=85pt ++ \addtolength{\footskip}{\OldFootSkip} ++ \addtolength{\footskip}{-\baselineskip} ++ \addtolength{\textheight}{-\footskip} ++ \vsize=\textheight ++ \@colht=\textheight ++ \@colroom\textheight ++ \newsavebox\FileKeyBox ++ \g@addto@macro\index@prologue{% ++ \sbox\FileKeyBox{% ++ \parbox[b]{\textwidth}{\strut\footnotesize ++ \raggedright{\bfseries File Key:} \filekey}% ++ }% ++ \typeout{FileKeyBox: ht=\the\ht\FileKeyBox, dp=\the\dp\FileKeyBox}% ++ \gdef\@oddfoot{\copy\FileKeyBox}% ++ \let\@evenfoot\@oddfoot ++ }% ++ \makeatother ++ + % makeindex needs a symbol between the parts of composite page numbers + % but we dont want one, so: + \typeout{% |