Discussion:
insert text just above footer?
(too old to reply)
Bil Kleb
2007-10-02 17:39:50 UTC
Permalink
Hi,

I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).

Now I want to typeset the publication note, but I haven't
been able to crack the \new\insert mystery. Is there some
other mechanism I should be pursuing?

Thanks,
--
Bil Kleb
http://nato-rto-latex.googlecode.com
Ulrike Fischer
2007-10-03 09:39:49 UTC
Permalink
Post by Bil Kleb
Hi,
I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).
Now I want to typeset the publication note, but I haven't
been able to crack the \new\insert mystery. Is there some
other mechanism I should be pursuing?
Put the text *in* the footer (define e.g. with fancyhdr a pagestyle
firstpage and use \thispagestyle{firstpage}). Use
\raisebox{1cm}[0pt][0pt]{text} to raise it.

Or insert the text at the start of the firstpage and use
\raisebox{\dimexpr -\textheight+2cm\relax}[0pt][0pt]{text} to move
it down.
--
Ulrike Fischer
Bil Kleb
2007-10-03 16:59:38 UTC
Permalink
Post by Bil Kleb
I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).
Now I want to typeset the publication note, but I haven't
been able to crack the \new\insert mystery. Is there some
other mechanism I should be pursuing?
This is as far as I've gotten,

\documentclass{article}
\makeatletter
\newcommand{\pubnote}[1]{% guts stolen from \@enlargethispage
\settoheight{\@tempskipa}{\parbox{4in}{#1}}
\@bsphack \insert\@kludgeins{\vskip\@tempskipa} \@esphack}
\makeatother
\begin{document}
\pubnote{publication note goes here}
Main body text.\footnote{Publication note should go below this footnote.}
\end{document}

which reserves the space at the bottom of the page for
the note, but I can't figure out how to get it to typeset
the note itself!

Regards,
--
Bil Kleb
http://nato-rto-latex.googlecode.com
a***@triumf.ca
2007-10-11 09:56:49 UTC
Permalink
Post by Bil Kleb
I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).
Yuck.

Why not use a \footnote, with a temporary definition of
\renewcommand\footnoterule{}

(You are allowed to reply "Yuck")

Donald Arseneau ***@triumf.ca
Bil Kleb
2007-10-11 13:00:06 UTC
Permalink
Post by a***@triumf.ca
Post by Bil Kleb
I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).
Why not use a \footnote, with a temporary definition of
\renewcommand\footnoterule{}
The page already has footnotes?

Regards,
--
Bil Kleb
http://nato-rto-latex.googlecode.com
Bil Kleb
2007-10-11 13:06:11 UTC
Permalink
Post by Bil Kleb
Post by a***@triumf.ca
Post by Bil Kleb
I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).
Why not use a \footnote, with a temporary definition of
\renewcommand\footnoterule{}
The page already has footnotes?
and the publication note does not have a footnote mark.

Regards,
--
Bil Kleb
http://nato-rto-latex.googlecode.com
Scott Pakin
2007-10-12 01:33:21 UTC
Permalink
Post by Bil Kleb
I've been using \enlargethispage{-2cm} to reserve space
at the bottom of the front page for a publication note
(just above the footer).
Now I want to typeset the publication note, but I haven't
been able to crack the \new\insert mystery. Is there some
other mechanism I should be pursuing?
I believe I've seen a class file (ACM?) that inserts a copyright notice
using a captionless figure placed with the [b] option. Maybe you can use
that trick?

-- Scott
Bil Kleb
2007-10-12 09:48:35 UTC
Permalink
Post by Scott Pakin
I believe I've seen a class file (ACM?) that inserts a copyright notice
using a captionless figure placed with the [b] option. Maybe you can use
that trick?
Not if footnotes appeared on that page?

(The copyright notice would then appear above the footnotes,
which in this case is not the desired behavior.)

Regards,
--
Bil Kleb
http://nato-rto-latex.googlecode.com
StevieD83
2007-10-12 18:05:12 UTC
Permalink
Post by Bil Kleb
Post by Scott Pakin
I believe I've seen a class file (ACM?) that inserts a copyright notice
using a captionless figure placed with the [b] option. Maybe you can use
that trick?
Not if footnotes appeared on that page?
(The copyright notice would then appear above the footnotes,
which in this case is not the desired behavior.)
Regards,
--
Bil Klebhttp://nato-rto-latex.googlecode.com
The amsart document class places their copyright notice in a way you
are describing. Maybe you can modify that for your specific needs?

Steve
Bil Kleb
2007-10-12 19:35:37 UTC
Permalink
Post by StevieD83
The amsart document class places their copyright notice in a way you
are describing. Maybe you can modify that for your specific needs?
I'll take a look...

Thanks,
--
Bil Kleb
http://nato-rto-latex.googlecode.com

Loading...