自定义脚注,无水平线

自定义脚注,无水平线

我想要一个没有水平线的自定义脚注(blfootnote),但是当我使用脚注命令时,我需要水平线。

\documentclass{article}
\usepackage{lipsum}
\usepackage[]{footmisc}
\usepackage{lipsum}
\makeatletter
\newcommand\blfootnote[1]{%
\def\footnoterulewidth{\textwidth}

%\renewcommand\footnoterule{%
%  \kern-3\p@
%  \hrule\@width\footnoterulewidth
%  \kern2.6\p@}

\makeatother
  \begingroup
  \renewcommand\thefootnote{}\footnote{#1}%
  \addtocounter{footnote}{-1}%
%\renewcommand*\footnoterule{0pt}
  \endgroup
}


\begin{document}

Some text\blfootnote{A footnote without marker} and some more text
\lipsum[1-5]
Some text\footnote{A standard footnote}.
\end{document}

相关内容