\感谢作者在章节 - 上下文中

\感谢作者在章节 - 上下文中

我尝试通过改编维基百科中的内容,实现一个类似期刊的脚注,并在每个部分/章节中添加作者所属单位这里这里。但是,有一件事让我很烦恼,那就是我选择的任何除“感谢”之外的注释名称都不起作用,而且我不知道为什么。我是否遗漏了什么,或者有没有更优雅的方法来实现这一点?

另外,我更希望脚注位于“致谢”注释下方。有没有什么选项可以实现这一点?

\setuplist[section][
 textcommand=\SectionTocEntry,
 after=\blank,
]
    
\define[1]\SectionTocEntry{%
 \doifnot{\rawstructurelistuservariable{author}}{}
{\start \it  \structurelistuservariable{author}\stop\space-- \crlf}%
 #1% title
 \doifnot{\rawstructurelistuservariable{subtitle}}{}
{\crlf\structurelistuservariable{subtitle}}}
    
\setuphead[section][
 after=\setup{section},
 align=center,
 number=no,
 style=\bold
]
    
\startsetups section
 \blank
 \midaligned{\it \structureuservariable{author}}
 \blank
\stopsetups
    
%\foonote{\structureuservariable{affiliation}}
    
\definenote[thanks]%[numberconversion=set 2]
\setupnote[thanks][rule=off]
\setupnotation[thanks][numberconversion=set 2] % or set 1
    
%\setupnote[footnote][location=bottom] % does not work
    
%% all notes, footnotes etc.
\setupnotation[
 alternative={left,bottom},
 hang=fit, % if commented, hanging is larger
 indenting={yes,small},indentnext=yes, % please, indent everything, should be default
]
    
\setupinteraction[state=start,color=black,contrastcolor=black]
    
\setuphead[subject][align=flushleft,style=\bfb]
    
\starttext
    
\subject{Grande lista de autores}
    
\placecontent[alternative=c]
      
\startsection[title={Whatever}][author={A. Uthor},subtitle={I’d like to say}]
This is a section.
\stopsection
    
\startsection[title={Segunda seção}][author={Fulano de Tal},subtitle={Uma segunda seção de teste}]
This is a section.
\stopsection
    
\startsection[title={Terceira seção}][author={Alberto de Paiva\thanks{asdf}},subtitle={Uma terceira seção de teste}]
This is a section.
\stopsection
    
\startsection[title={Três autores}][author={Sicrano de Tal\thanks{Universidade de Tangerinas} e Alberto Steinenberg\thanks{Universidade de Nilfgaard}},
subtitle={Uma seção de teste com dois autores e comentário}]
This is a section.\footnote{Só de teste.}
\stopsection

\stoptext

相关内容