我想在章节开头创建一个未编号的脚注,但我不知道如何避免为编号脚注实现的样式。目前我有:
\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}