ConTeXt의 머리말 콘텐츠에 각주를 허용하는 방법은 무엇입니까?

ConTeXt의 머리말 콘텐츠에 각주를 허용하는 방법은 무엇입니까?

다음과 같이 구성된 문서가 있습니다.

\starttext
    \startfrontmatter
        \startstandardmakeup
            This is a title.\footnote{This is a footnote.}
        \stopstandardmakeup
    \stopfrontmatter
    \startbodymatter
        This is some text.\footnote{This is another footnote.}
    \stopbodymatter
\stoptext

컴파일 후 제목 페이지와 텍스트 페이지가 생성됩니다. 각주에는 모두 "1"과 "2" 표시가 있지만 제목 페이지의 각주에 대한 각주 텍스트는 인쇄되지 않습니다. 각주를 표시할 수 있는 방법이 있나요? 제목 페이지 자체에 나타날 수도 있고 적어도 다음 페이지에 나타날 수도 있습니다.

답변1

Aditya가 댓글에서 지적했듯이 누락된 각주는 머리말을 사용한다는 사실과 관련이 없습니다. 이것은 완벽하게 작동합니다.

\starttext
  \startfrontmatter
    This is a title.\footnote{This is a footnote.}
  \stopfrontmatter

  This is some text.\footnote{This is another footnote.}
\stoptext

화장이 범인이다 지역 각주는 메이크업 내부에서 작동합니다.

\starttext
  \startstandardmakeup
    \startlocalfootnotes
      This is a title.\footnote{This is a footnote.}
      \vfill\placelocalfootnotes
    \stoplocalfootnotes
  \stopstandardmakeup

  This is some text.\footnote{This is another footnote.}
\stoptext

그러나 지역 각주는 독립적인 번호 매기기 체계를 사용하고 하나부터 시작하며 전체 각주와 결합되지 않습니다. 일반적으로 표의 각주에 사용됩니다.

또 다른 해결책은 를 사용하는 것입니다 \automigrateinserts. 이는 번호 매기기가 전체 각주와 결합된다는 장점이 있습니다. 하지만 단점은 각주가 다음 페이지에 나온다는 점이다.

\automigrateinserts
\starttext
  \startstandardmakeup
    This is a title.\footnote{This is a footnote.}
  \stopstandardmakeup

  This is some text.\footnote{This is another footnote.}
\stoptext

관련 정보