Explorar el Código

* Added the \TufteRecalculate command which recalculates the width of the

fullwidth environment, caption/sidenote widths, etc.  This should be used
  when you've changed the margins or other dimensions of the page layout (using
  \geometry).  It's automatically called at the end of the preamble, so you
  should have to call it manually.  


git-svn-id: https://tufte-latex.googlecode.com/svn/trunk@103 516e2f36-ce3a-0410-bea4-1d4a03f5df72
master
Kevin M. Godby hace 16 años
padre
commit
8060810cf2
Se han modificado 3 ficheros con 15 adiciones y 11 borrados
  1. BIN
      sample-book.pdf
  2. BIN
      sample-handout.pdf
  3. +15
    -11
      tufte-common.sty

BIN
sample-book.pdf Ver fichero


BIN
sample-handout.pdf Ver fichero


+ 15
- 11
tufte-common.sty Ver fichero

@@ -106,7 +106,7 @@
\DeclareOption{nobidi}{\setboolean{@tufte@loadbibi}{false}}

%%
% `nohyper' option -- loads the bidi package for bi-directional text
% `nohyper' option -- suppresses loading of the hyperref package

\newboolean{@tufte@loadhyper}
\setboolean{@tufte@loadhyper}{true}
@@ -324,22 +324,26 @@
}%
}

%%
% Compute lengths used for full-width displays

\newlength{\@tufte@overhang}
\setlength{\@tufte@overhang}{\marginparwidth}
\addtolength{\@tufte@overhang}{\marginparsep}

\newlength{\@tufte@fullwidth}
\setlength{\@tufte@fullwidth}{\textwidth}
\addtolength{\@tufte@fullwidth}{\marginparsep}
\addtolength{\@tufte@fullwidth}{\marginparwidth}

\newlength{\@tufte@caption@fill}
\setlength{\@tufte@caption@fill}{\textwidth}
\addtolength{\@tufte@caption@fill}{\marginparsep}

\newcommand{\TufteRecalculate}{%
\setlength{\@tufte@overhang}{\marginparwidth}
\addtolength{\@tufte@overhang}{\marginparsep}

\setlength{\@tufte@fullwidth}{\textwidth}
\addtolength{\@tufte@fullwidth}{\marginparsep}
\addtolength{\@tufte@fullwidth}{\marginparwidth}

\setlength{\@tufte@caption@fill}{\textwidth}
\addtolength{\@tufte@caption@fill}{\marginparsep}
}

\AtBeginDocument{\TufteRecalculate}

%%
% Modified \title, \author, and \date commands. These store the


Cargando…
Cancelar
Guardar