脚注标记正常大小(使用 LuaLaTeX)

脚注标记正常大小(使用 LuaLaTeX)

我目前正在排版一本书,使用 LuaLaTeX。

关于脚注,我希望实现以下目标:

  1. 无脚注规则
  2. 悬挂在页边空白处的脚注符号
  3. 脚注符号应在注释中全尺寸显示(LaTeX 可以很好地处理“文本”部分)

我使用 处理 1 和 2 footmisc,并且还使用它fnpct来确保标点符号的良好字距调整。

我只是不知道如何处理 3。这里有一些 MWE

 \documentclass[mdemyvopaper, showtrims, twoside, openright,11pt]{memoir}
 %Bunch of stuff and packages
 \usepackage[marginal,norule]{footmisc}%note piè
 \usepackage{perpage}
 \usepackage{fnpct}
 \setfnsymbol{bringhurst}
 \renewcommand{\thefootnote}{\fnsymbol{footnote}}
 \MakePerPage{footnote}
 %Bunch of other stuff
 \begin{document}
 Lorem\footnote{ipsum}.
 \end{document}

你能帮帮我吗?谢谢

答案1

您在寻找类似的东西吗?我不确定我是否正确理解了要求 3):

\documentclass{article}

\usepackage{lipsum}

\let\footnoterule\relax

\makeatletter
\renewcommand\@makefntext[1]{%
  \par \parindent=\z@ \noindent
  \llap{\@thefnmark.\quad}%
  #1%
}
\makeatother

\begin{document}
\vspace*{\fill}Text\footnote{\lipsum[1]}
\end{document}

在此处输入图片描述

相关内容