Benjamin Buchmuller schrieb am 02.04.2020 um 19:29:
Potentially on the same lines, placing delayed element seems currently not to work properly (or the syntax has changed?).
I think these features of MkIV are very elegant and useful. I’m just wondering if they are/were temporarily not working (tried on 2019.12.27 16:34 MKIV beta and the Wiki’s ConTeXt online) or have been disabled/changed for some reason?
Thanks!
Benjamin
(1) palcenamedfloat ---------------
This is the example from the Wiki:
[...]
(2) Footnotes at the end of each chapter ------------------------------------
Also an example from the Wiki:
\startsetups chapter:after
\ifcase\rawcountervalue[footnote]\relax
\or
\startsubject[title=Footnote]
\placefootnotes
\stopsubject
\else
\startsubject[title=Footnotes]
\placefootnotes
\stopsubject
\fi \stopsetups
\setupnotes[location=none] \setupnotation[way=bychapter]
\setuphead[chapter][aftersection=\setups{chapter:after}]
Here is a slightly reformatted version of Hans code which works for me with the latest ConTeXt version (I checked only LMTX). \startsetups[chapter:after] \ifcase\rawcountervalue[footnote]\relax % \or \startsubject[title=Footnote] \placefootnotes \stopsubject \else \startsubject[title=Footnotes] \placefootnotes \stopsubject \fi \stopsetups \setupnote [footnote] [location=none] \setupnotation [footnote] [way=bychapter] \setuphead[chapter][aftersection=\setups{chapter:after}] \starttext \dorecurse{4} {\startchapter[title={Number #1}] A few notes\dorecurse{\numexpr#1-1\relax}{\footnote{Note #1.##1}}. \stopchapter} \stoptext Wolfgang