blob: 33e7a13832ac613086dc97a77f2183ee91af0e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
% Article: 2886 of comp.text.tex
% Path: tls-cs!corton!mcsun!uunet!munnari.oz.au!uniwa!bilby.cs.uwa.oz.au!marke
% From: marke@cs.uwa.oz.au (Mark Ellison)
% Newsgroups: comp.text.tex
% Subject: writing footnotes without numbers
% Message-ID: <marke.678003955@cuscus>
% Date: Thu, 27 Jun 91 07:25:55 hfe
% Sender: usenet@bilby.cs.uwa.oz.au
% Organization: Dept. Computer Science, University of Western Australia.
% Lines: 47
% Pate: cuscus!marke
% Nntp-Posting-Host: cuscus
%
%
% Here is a function which writes a footnote without
% a mark in either the main text or the footnote.
% Some journals (eg Linguistic Inquiry) put acknowledgements
% in an unnumbered first footnote. With this function
% you can put them there.
%
% I put the function in a style file in a standard
% place for easy access and use.
%
% -------------------<LaTeX Source Below>-------------------
% T Mark Ellison 26 Jun 1991
%
% This style file defines the command \nnfoottext
% which allows the user to at any time insert footnote
% text material without adding a footnote number
% to either the main page or the note.
%
% Sample Use:
%
% .....
% \begin{document}
% .....
% \nnfoottext{This is a witty and interesting
% numberless footnote. Thank-you.}
% .....
% \end{document}
%
% This was originally developed for the acknowledgement
% notes similar to the style used by the journal
% Linguistic Inquiry. The code was adapted from the latex
% source.
%
\long\def\nnfoottext#1{\insert\footins{\footnotesize
\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth \@parboxrestore
\edef\@thefnmark{}
\edef\@currentlabel{}\@makefntext
{\rule{\z@}{\footnotesep}\ignorespaces
#1\strut}}}
%--
%-------------------------------------------------------------------------------
%T Mark Ellison marke@cuscus.cs.uwa.oz.au Department of Computer Science
% University of Western Australia
%Never necklace an albatross. W.A. 6009, Australia
|