diff options
author | Karl Berry <karl@freefriends.org> | 2010-04-19 22:50:53 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-04-19 22:50:53 +0000 |
commit | 6f50f6bd304c69abef2c051ee1aa83b602027143 (patch) | |
tree | 27c73e4e2125099424a4a235e1d37cfd2c050c33 /Master/texmf-dist/doc/latex/memoir/memman.tex | |
parent | 8c448ca8b31770f9afca1e77a4b6d2e91404488e (diff) |
memoir 3.6 (18apr10)
git-svn-id: svn://tug.org/texlive/trunk@17927 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/memoir/memman.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/memoir/memman.tex | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/memoir/memman.tex b/Master/texmf-dist/doc/latex/memoir/memman.tex index 55739d57010..1813bf62886 100644 --- a/Master/texmf-dist/doc/latex/memoir/memman.tex +++ b/Master/texmf-dist/doc/latex/memoir/memman.tex @@ -8,7 +8,7 @@ \listfiles \usepackage{comment} \usepackage[nofancy]{svninfo} -\svnInfo $Id: memman.tex 181 2010-02-17 10:32:48Z daleif $ +\svnInfo $Id: memman.tex 189 2010-03-12 17:02:55Z daleif $ % For (non-printing) notes \PWnote{date}{text} @@ -30334,6 +30334,46 @@ file) without the \cs{makeat...} commands. \end{sniplet} +\LMnote{2010/03/12}{Added this sniplet inspired by a thread on ctt} +\begin{sniplet} + +At times a document design calls for a footnote configuration equal to +the default but everything indented more to the right. This can be +achieved via +\begin{lcode} + \newlength\myextrafootnoteindent + \setlength\myextrafootnoteindent{\parindent} + \renewcommand\makefootmarkhook{% + \addtolength{\leftskip}{\myextrafootnoteindent}} +\end{lcode} +In this example we indent the footnotes to match the overall paragraph +indentation. We need to save the current value of \verb?\parindent? +since it is reset in the footnotes. + +\end{sniplet} + + +\LMnote{2010/03/12}{Added this sniplet inspired by a thread on ctt} +\begin{sniplet} +This sniplet comes from another problem described in \textsc{ctt}. If +one use the \Lpack{eso-pic} package to add a background image, this +image ends up on top of the trim marks. To get it \emph{under} the +trim marks Rolf Niepraschk suggested the following trick +\begin{lcode} +\RequirePackage{atbegshi}\AtBeginShipoutInit +\documentclass[...,showtrims]{memoir} +... +\usepackage{eso-pic} +... +\end{lcode} + + +\end{sniplet} + + + + + %#% extend %#% extstart include pictures.tex |