脚注无标记且无空格

脚注无标记且无空格

我正在使用提供的解决方案无标记的脚注。该解决方案的 MWE 为:

\documentclass{article}
\usepackage{lipsum}

\newcommand\blfootnote[1]{%
  \begingroup
  \renewcommand\thefootnote{}\footnote{#1}%
  \addtocounter{footnote}{-1}%
  \endgroup
}

\begin{document}

Some text\blfootnote{A footnote without marker} and some more text\footnote{A standard 
footnote}

\end{document}

该 MWE 的结果是: 在此处输入图片描述 如您所见,字母 A 在盲注脚注和普通脚注中都是垂直对齐的。这是因为脚注左侧有一个空格。我该如何去掉那个空格?(我使用的是双列页面布局,所以我的“脚注”出现在页面的一侧,文本是左对齐的,所以空格看起来很奇怪)

答案1

尝试这个:

% footnoteprob.tex  SE 590907

\documentclass{article}
\usepackage{lipsum}

\makeatletter
\newcommand\blfootnote[1]{%
  \begingroup
  \renewcommand{\@makefntext}[1]{\noindent\makebox[1.8em][r]#1}
  \renewcommand\thefootnote{}\footnote{#1}%
  \addtocounter{footnote}{-1}%
  \endgroup
}
\makeatother

\begin{document}

Some text\blfootnote{A footnote without marker} and some more text\footnote{A standard 
footnote}

\end{document}

在此处输入图片描述

顺便说一句,我认为你所追求的结果看起来很奇怪。

相关内容