如何创建忽略回忆录的 footmarkstyle 的未编号脚注

如何创建忽略回忆录的 footmarkstyle 的未编号脚注

我想在章节开头创建一个未编号的脚注,但我不知道如何避免为编号脚注实现的样式。目前我有:

\documentclass{memoir}

\makeatletter
\newcommand{\blindnote}{\xdef\@thefnmark{}\@footnotetext} % define unnumbered footnote 
\makeatother

\footmarkstyle{#1. \hfill}           % marker flushed left
\setlength{\footmarkwidth}{1.6em}    % create indentation space for marker
\setlength{\footmarksep}{-1.6em}     % set text to margin

\begin{document}
    \null\vfill
    \blindnote{This should be flushed left without indentation and period.}

Note\footnote{This looks like it should.}
\end{document}

这使

在此处输入图片描述

但它应该看起来像这样

在此处输入图片描述

我怎样才能解决这个问题?

答案1

尝试这个:

\documentclass{memoir}
\usepackage{lipsum}

\makeatletter
% define unnumbered footnote 
\newcommand{\blindnote}[1]{%
  \def\@thefnmark{}%
  \begingroup
  \setlength{\footmarkwidth}{0pt}%
  \setlength{\footmarksep}{0pt}%
  \footmarkstyle{}%
  \@footnotetext{#1}%
  \endgroup
}
\makeatother

\footmarkstyle{#1. \hfill}           % marker flushed left
\setlength{\footmarkwidth}{1.6em}    % create indentation space for marker
\setlength{\footmarksep}{-1.6em}     % set text to margin

\begin{document}
    \null\vfill
    \blindnote{\lipsum[1]}

Note\footnote{This looks like it should.}
\end{document}

在此处输入图片描述

相关内容