4

In this MWE I'd like to have the footnote with no footnotemark in text or footnote. I'm surprised that I couldn't find an answer elsewhere on this site - perhaps I haven't looked properly.

enter image description here

\documentclass{memoir}
\usepackage{lipsum}
\usepackage[textheight=4in]{geometry}

\newcommand{\chapternote}[1]{%
\footnote{\emph{#1}}%
}

\begin{document}

\chapter{One}

\begin{quotation}
Some introductory material here \ldots
\end{quotation}

\chapternote{Information about this chapter -- without footnotemark,
  please.}

\lipsum[1]

\end{document}

Edit: followup question. I'd like to have normal footnote numbering for all the ordinary \footnote s. Footnote counter should reset at the start of each section.

Ethan Bolker
  • 9,333
  • 3
  • 42
  • 69

1 Answers1

8

You can use the traditional footnote mechanism, but you have to make sure that you deal with counters properly. To that end, pass a value as the optional argument to \footnote, but also set \thempfn to not print anything:

enter image description here

\documentclass{memoir}
\usepackage{lipsum}
\usepackage[textheight=4in]{geometry}

\newcommand{\chapternote}[1]{{%
  \let\thempfn\relax% Remove footnote number printing mechanism
  \footnotetext[0]{\emph{#1}}% Print footnote text
}}

\begin{document}

\chapter{One}

\begin{quotation}
Some introductory material here \ldots
\end{quotation}

\chapternote{Information about this chapter -- without footnotemark,
  please.}

\lipsum[1]

\end{document}

Another option would be to use the symbol "numbering" for footnotes and pass the value 0, since there is no symbol for 0.

\newcommand{\chapternote}[1]{{%
  \renewcommand{\thefootnote}{\fnsymbol{footnote}}%
  \footnotetext[0]{\emph{#1}}% Print footnote text
}}

Another option is to use a package: nccfoots. It provides \Footenotetext{<marker>}{<footnote>}

\usepackage{nccfoots}% http://ctan.org/pkg/nccfoots
\newcommand{\chapternote}[1]{%
  \Footnotetext{}{\emph{#1}}% Print footnote text
}
Werner
  • 603,163