Search found 4 matches

by alexv
Sun May 01, 2011 6:16 pm
Forum: Page Layout
Topic: Zero margins with memoir
Replies: 1
Views: 1995

Zero margins with memoir

The problem appears to go away if \checkandfixthelayout is asked to use "fixed" algorithm:

Code: Select all

\checkandfixthelayout[fixed]
by alexv
Fri Apr 29, 2011 5:36 pm
Forum: Page Layout
Topic: Zero margins with memoir
Replies: 1
Views: 1995

Zero margins with memoir

I am trying to set up custom page size with zero margins. Here is the example
\documentclass[oneside,final,12pt]{memoir}
\usepackage{lipsum} % just for sample text
\usepackage[T1]{fontenc}

\pagestyle{empty}
\aliaspagestyle{chapter}{empty}
\aliaspagestyle{part}{empty}

\setstocksize{194.73mm}{132 ...
by alexv
Wed Apr 27, 2011 4:07 pm
Forum: General
Topic: footnote in epigraph (memoir class)
Replies: 5
Views: 5215

footnote in epigraph (memoir class)

Probably the epigraph is a minipage . You can try \footnotemark and \footnotetext .
Thanks for the advice. I finally found the solution. The \footnotemark / \footnotetext was indeed my first approach but then I found footnote package (part of mdwtools ). The package provides the savenotes ...
by alexv
Wed Apr 27, 2011 4:45 am
Forum: General
Topic: footnote in epigraph (memoir class)
Replies: 5
Views: 5215

footnote in epigraph (memoir class)

I need to have a footnote in \epigraph like this


\documentclass[oneside,final,12pt]{memoir}

\usepackage[T1]{fontenc}

\begin{document}

\chapter*{Fist Chapter}
\epigraph{This is epigraph}{Somebody famous\footnote{locally}}

Test Test Test
\end{document}


Unfortunately it places the footnote's ...