Greetings!

I am writing a German critical edition in which I am using endnotes, and I am encountering severe difficulties with formatting them as I should wish.

The idea is to indent the entire footnote—marker and text—0.5in.

In ConTeXt (Mark II) on XeTeX, I can move the footnote marker with this set-up:

\definenote[critical][conversion=characters,
                      way=bychapter,
                      location=text,
                      bodyfont=12pt,
                      margindistance=-.5in,
                      align=flushleft]

Then I move the text by adding the unsightly but functional hack \hskip.5in to the beginning of the argument of \critical or \criticaltext.  Unfortunately, the endnotes do not flow from page to page in Mark II, and, from the comments on the source code, it appears that this cannot be helped.  Given the length and number of endnotes needed for my project, ConTeXt (Mark II) on XeTeX does not seem viable.

In ConTeXt (Mark IV) on LuaTeX, on the other hand, the endnotes do flow from page to page, but the formatting does not appear to respond to the margindistance key.  From various related posts, the answer appears to lie in \setupnotation, but, whenever I attempt to pass this command, I get an “undefined control sequence” error.


In short, my question is, How do I code indenting each endnote .5in with the highest degree of automation and fewest hacks possible?

Sincerely yours,
Adam Khan

P.S. In case something less obvious in my environment file is causing my difficulties, I attach it below:

\startenvironment Formattierung

\setuppapersize[letter][letter]
\setuplayout[backspace=1.5in,
             topspace=1in,
             bottomspace=1in,
             cutspace=1in]
\setupinterlinespace[line=5.6ex]
\setupindenting[.5in]
\indenting[always]
\setupnarrower[left=0.5in,
               right=0in]
\setupspacing[packed]
\setupalign[right,broad,nothyphenated]
\setuplinenumbering[step=1]
\setuppagenumbering[way=bytext]
\definenote[genetic]
\setupnote[genetic][numberconversion=romannumerals,
                    way=bychapter,
                    location=text,
                    bodyfont=12pt,
                    align=flushleft]
\definenote[source]
\setupnote[source][numberconversion=set2,
                   way=bychapter,
                   location=text,
                   bodyfont=12pt,
                   align=flushleft]
\definenote[critical]
\setupnote[critical][numberconversion=characters,
                     way=bychapter,
                     location=text,
                     bodyfont=12pt,
                     margindistance=-.5in,
                     align=flushleft]
\definenote[annotation]
\setupnote[annotation][numberconversion=numbers,
                       way=bychapter,
                       location=text,
                       bodyfont=12pt,
                       align=flushleft]
\definenote[sociological]
\setupnote[sociological][numberconversion=Romannumerals,
                         way=bychapter,
                         location=text,
                         bodyfont=12pt,
                         align=flushleft]
\setupbodyfont[ss,12pt]
\setuphead[chapter][ownnumber=yes]

\def\broadcast{\rm}
\def\callout#1{<#1>}
\def\noteindent{\hskip.5in}
\def\notepar{\\\hskip.5in}
\def\original{\ss}
\def\paratext{\tt}
\def\quotationheader#1#2{{\noindenting\paratext#1]\wordright{[#2}}}
\def\siglum#1{{\bf#1}}
\def\someoneelse#1{{\it#1}}

\stopenvironment