没有脚注标记的脚注

没有脚注标记的脚注

在此 MWE 中,我希望在文本或脚注中添加脚注,但不添加脚注标记。令我惊讶的是,我在本站的其他地方找不到答案 - 也许是我找的不够仔细。

在此处输入图片描述

\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}

编辑:后续问题。我希望所有普通的\footnote脚注都有正常的脚注编号。脚注计数器应在每个节的开头重置。

答案1

您可以使用传统的脚注机制,但您必须确保正确处理计数器。为此,传递一个价值作为的可选参数\footnote,但也设置\thempfn为不打印任何内容:

在此处输入图片描述

\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}

另一种选择是使用符号“编号”作为脚注并传递值 0,因为没有表示 0 的符号。

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

另一个选择是使用包:nccfoots。 它提供\Footenotetext{<marker>}{<footnote>}

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

相关内容