From 219b73cc03df5f291234219effeec7f49d9a58c2 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 15 Feb 2010 01:05:41 +0000 Subject: a4wide update to own dir (13feb10) git-svn-id: svn://tug.org/texlive/trunk@17021 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/a4wide/a4wide.pdf | Bin 0 -> 139175 bytes Master/texmf-dist/doc/latex/a4wide/a4wide.tex | 42 +++++++++++++++++++++++ Master/texmf-dist/tex/latex/a4wide/a4wide.sty | 39 +++++++++++++++++++++ Master/texmf-dist/tex/latex/ltxmisc/a4wide.sty | 39 --------------------- Master/tlpkg/bin/tlpkg-ctan-check | 2 +- Master/tlpkg/tlpsrc/a4wide.tlpsrc | 0 Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc | 1 + 7 files changed, 83 insertions(+), 40 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/a4wide/a4wide.pdf create mode 100644 Master/texmf-dist/doc/latex/a4wide/a4wide.tex create mode 100644 Master/texmf-dist/tex/latex/a4wide/a4wide.sty delete mode 100644 Master/texmf-dist/tex/latex/ltxmisc/a4wide.sty create mode 100644 Master/tlpkg/tlpsrc/a4wide.tlpsrc diff --git a/Master/texmf-dist/doc/latex/a4wide/a4wide.pdf b/Master/texmf-dist/doc/latex/a4wide/a4wide.pdf new file mode 100644 index 00000000000..28d13485d75 Binary files /dev/null and b/Master/texmf-dist/doc/latex/a4wide/a4wide.pdf differ diff --git a/Master/texmf-dist/doc/latex/a4wide/a4wide.tex b/Master/texmf-dist/doc/latex/a4wide/a4wide.tex new file mode 100644 index 00000000000..c7c18d0beba --- /dev/null +++ b/Master/texmf-dist/doc/latex/a4wide/a4wide.tex @@ -0,0 +1,42 @@ +\documentclass[parskip=true, pagesize=auto]{scrartcl} + +\usepackage{fixltx2e} +\usepackage{lmodern} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{booktabs} +\usepackage{siunitx} + +\addtokomafont{disposition}{\rmfamily} +\sisetup{obeybold} + +\newunit{\point}{pt} +\newunit{\inch}{in} + +\title{The \textsf{a4wide} package} +\author{Jean-François Lamy \and Alexander Holt} +\date{August 1994} + + +\begin{document} + +\maketitle + +The \textsf{a4wide} package redefines the margins so that they are more in line with what we are used to see. +It was written by Jean-François Lamy in July 1986 and minimally modified for \LaTeXe\ by Alexander Holt, August 1994. +Depending on the base font size, it modifies the margins as follows: +% +\begin{center} + \begin{tabular}{@{}S[tabformat=2]S[tabformat=2]S[tabformat=1.3]S[tabformat=1.3]S[tabformat=1.2]@{}} + \toprule + {Base font} & {Number of lines} & {Width of} & {Width of left and} & {Width of} \\ + {size (\si{\point})} & {in page body} & {text line (\si{\inch})} & {right margin (\si{\inch})} & {marginal notes (\si{\inch})} \\ + \midrule + 10 & 53 & 5.875 & 0.25 & 0.75 \\ + 11 & 46 & 6.125 & 0.125 & 0.75 \\ + 12 & 42 & 6.375 & 0 & 0.75 \\ + \bottomrule + \end{tabular} +\end{center} + +\end{document} diff --git a/Master/texmf-dist/tex/latex/a4wide/a4wide.sty b/Master/texmf-dist/tex/latex/a4wide/a4wide.sty new file mode 100644 index 00000000000..9f651505d72 --- /dev/null +++ b/Master/texmf-dist/tex/latex/a4wide/a4wide.sty @@ -0,0 +1,39 @@ +%NAME: a4wide.sty +% "moretext" document style option. +% Jean-Francois Lamy, July 86 +% +% Redefines the margins so that they are more in line with +% what we are used to see. +% +% [Minimally modified for LaTeX2e, Alexander Holt, August 1994] + +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{a4wide}[1994/08/30] +\RequirePackage{a4} + +\ifcase \@ptsize + % mods for 10 pt + \oddsidemargin 0.15 in % Left margin on odd-numbered pages. + \evensidemargin 0.35 in % Left margin on even-numbered pages. + \marginparwidth 1 in % Width of marginal notes. + \oddsidemargin 0.25 in % Note that \oddsidemargin = \evensidemargin + \evensidemargin 0.25 in + \marginparwidth 0.75 in + \textwidth 5.875 in % Width of text line. +\or % mods for 11 pt + \oddsidemargin 0.1 in % Left margin on odd-numbered pages. + \evensidemargin 0.15 in % Left margin on even-numbered pages. + \marginparwidth 1 in % Width of marginal notes. + \oddsidemargin 0.125 in % Note that \oddsidemargin = \evensidemargin + \evensidemargin 0.125 in + \marginparwidth 0.75 in + \textwidth 6.125 in % Width of text line. +\or % mods for 12 pt + \oddsidemargin -10 pt % Left margin on odd-numbered pages. + \evensidemargin 10 pt % Left margin on even-numbered pages. + \marginparwidth 1 in % Width of marginal notes. + \oddsidemargin 0 in % Note that \oddsidemargin = \evensidemargin + \evensidemargin 0 in + \marginparwidth 0.75 in + \textwidth 6.375 true in % Width of text line. +\fi diff --git a/Master/texmf-dist/tex/latex/ltxmisc/a4wide.sty b/Master/texmf-dist/tex/latex/ltxmisc/a4wide.sty deleted file mode 100644 index 9f651505d72..00000000000 --- a/Master/texmf-dist/tex/latex/ltxmisc/a4wide.sty +++ /dev/null @@ -1,39 +0,0 @@ -%NAME: a4wide.sty -% "moretext" document style option. -% Jean-Francois Lamy, July 86 -% -% Redefines the margins so that they are more in line with -% what we are used to see. -% -% [Minimally modified for LaTeX2e, Alexander Holt, August 1994] - -\NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{a4wide}[1994/08/30] -\RequirePackage{a4} - -\ifcase \@ptsize - % mods for 10 pt - \oddsidemargin 0.15 in % Left margin on odd-numbered pages. - \evensidemargin 0.35 in % Left margin on even-numbered pages. - \marginparwidth 1 in % Width of marginal notes. - \oddsidemargin 0.25 in % Note that \oddsidemargin = \evensidemargin - \evensidemargin 0.25 in - \marginparwidth 0.75 in - \textwidth 5.875 in % Width of text line. -\or % mods for 11 pt - \oddsidemargin 0.1 in % Left margin on odd-numbered pages. - \evensidemargin 0.15 in % Left margin on even-numbered pages. - \marginparwidth 1 in % Width of marginal notes. - \oddsidemargin 0.125 in % Note that \oddsidemargin = \evensidemargin - \evensidemargin 0.125 in - \marginparwidth 0.75 in - \textwidth 6.125 in % Width of text line. -\or % mods for 12 pt - \oddsidemargin -10 pt % Left margin on odd-numbered pages. - \evensidemargin 10 pt % Left margin on even-numbered pages. - \marginparwidth 1 in % Width of marginal notes. - \oddsidemargin 0 in % Note that \oddsidemargin = \evensidemargin - \evensidemargin 0 in - \marginparwidth 0.75 in - \textwidth 6.375 true in % Width of text line. -\fi diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index 4260aeba90c..a8365a4efdd 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -20,7 +20,7 @@ our %OPT; my @WorkingTLP = qw( 12many - a0poster a2ping a5comb + a0poster a2ping a4wide a5comb aastex abbr abc abstract abstyles accfonts achemso acmconf acmtrans acromake acronym active-conf addlines adrconv adrlist ae aeguill afthesis diff --git a/Master/tlpkg/tlpsrc/a4wide.tlpsrc b/Master/tlpkg/tlpsrc/a4wide.tlpsrc new file mode 100644 index 00000000000..e69de29bb2d diff --git a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc index 5c580d76331..3e63bbc93c5 100644 --- a/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc +++ b/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc @@ -6,6 +6,7 @@ depend ESIEEcv depend HA-prosper depend Tabbing depend a0poster +depend a4wide depend a5comb depend abstract depend achemso -- cgit v1.2.3