切换正文中 reledmac 脚注编号的位置

切换正文中 reledmac 脚注编号的位置

使用reledmac熟悉的脚注时,脚注编号设置在词条文本的左侧,而不是右侧:

\documentclass[oneside]{memoir}
\usepackage[series={A,B},draft]{reledmac}
\newcommand{\annotation}[1]{\footnoteA{#1}}
\newcommand{\variant}[2]{\Afootnote{#1 \ #2}}

\begin{document}

\beginnumbering

\pstart
I will put this \edtext{footnote}{\annotation{Some obscure source.}} here.
\pend

\end{document}

脚注错误

至少对我来说,这是一种意想不到的行为,因为我希望脚注位于词条文本的右边。

我想在右侧显示脚注编号,但我在reledmac文档中没有看到与此相关的内容。您有什么想法可以改变这一点吗?

答案1

这是因为您在 的第二个参数内使用了熟悉的脚注\edtext。但您\edtext只需要对关键脚注进行注释,而不需要对熟悉的脚注进行注释。

做就是了

\documentclass[oneside]{memoir}
\usepackage[series={A,B},draft]{reledmac}
\newcommand{\annotation}[1]{\footnoteA{#1}}
\newcommand{\variant}[2]{\Afootnote{#1 \ #2}}

\begin{document}

\beginnumbering

\pstart
I will put this footnote\annotation{Some obscure source.} here.
\pend

\end{document}

相关内容