Am 23.08.2013 um 08:56 schrieb Mikoláš Štrajt
Hello all,
We are writing a magazine with my friends and I am going to typeset it with ConTEXt. It works fine but I ran into the problem with heads.
In our magazine articles will be grouped in sections (e.g. poetry, short stories, programming). I need to hide section heads in text but to show them in TOC and page headers.
So there will be no „Poetry“ head in text but „Poetry“ will be shown in page header and TOC.
Unfortunately, the trick from http://wiki.contextgarden.net/Titles#Flushing_section_head_data_without_type... seems to not work for me.
Thanks for help.
\definehead[test][section] \setuphead [test] [placehead=empty, before=, after=] \setupheadertexts[test] \starttext \showframe \placelist[test] \test{Knuth} \dorecurse{10}{\input knuth\par} \test{Tufte} \dorecurse{10}{\input tufte\par} \test{Zapf} \dorecurse{10}{\input zapf\par} \test{Ward} \dorecurse{10}{\input ward\par} \stoptext Wolfgang