eledmac:是否可以将脚注附加到未编号的段落?

eledmac:是否可以将脚注附加到未编号的段落?
\documentclass{memoir}
\usepackage{eledmac}

\footparagraph{A}               
\foottwocol{B} 
\let\variant=\Afootnote                 
\let\note=\Bfootnote 

\lineation{section}                 
\linenummargin{right}               

\begin{document}

\beginnumbering

\pstart \edtext{Here}{\note{This is a footnote on the word here.}} is some text 
that has a footnote attached to the word here. Lorem ipsum dolor sit amet, 
consectetur adipiscing elit. Sed a ante euismod, iaculis elit nec, tincidunt 
tellus. Morbi nec nibh tortor. Integer gravida, neque vel molestie ullamcorper,
nisi velit consectetur mi, ac blandit dui neque ut libero. In nec sapien tellus
Ut mollis ante odio, ac tempor quam ultricies sed. Fusce enim sem, facilisis et
porttitor aliquam, porta vel est. Aenean ut risus a odio ornare ultrices.\pend

This is a \edtext{non-numbered}{\note{This is the footnote I wish I could add.}}
paragraph because it's not within pstart and pend. I want to be able to put a 
footnote on it. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed a 
ante euismod, iaculis elit nec, tincidunt tellus. Morbi nec nibh tortor. Integer
gravida, neque vel molestie ullamcorper, nisi velit consectetur mi, ac blandit 
dui neque ut libero. In nec sapien tellus. Ut mollis ante odio, ac tempor 
quam ultricies sed. Fusce enim sem, facilisis et porttitor aliquam, porta vel 
est. Aenean ut risus a odio ornare ultrices. 

\endnumbering

\end{document}

答案1

我觉得你想得太多了。为什么不直接使用:

\usepackage[symbol]{footmisc}

---然后简单一点:

\footnote{This is a 'symbol' footnote outside of the 'pstart-pend' environments.}

..?换句话说,做这样的事情:

\documentclass{memoir} 
\usepackage{eledmac}                                     
\usepackage[symbol]{footmisc}

\footparagraph{A} 
\foottwocol{B} 
\let\variant=\Afootnote                        
\let\note=\Bfootnote 
\let\nnote=\footnote  % <-- added

\lineation{section} 
\linenummargin{right}

\begin{document}

\beginnumbering
\pstart 

\edtext{Here}{\note{This is a footnote on the word here.}} %
is some text that has a footnote attached to the word here. 
\pend  

% This is a \edtext{non-numbered}{\note{This is the footnote I wish I could add.}}
This is a non-numbered\nnote{This is the footnote I wish I could add.} %
paragraph because it's not within pstart and pend. I want to be able to put a footnote on it. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed a
ante euismod, iaculis elit nec, tincidunt tellus. Morbi nec nibh tortor.  

% And we can start numbering again....
\pstart 
\edtext{Here}{\note{This is a footnote on the word here.}} is some text 
that has a footnote attached to the word here. Lorem ipsum dolor sit amet,
\pend

\endnumbering

\end{document}

相关内容