On 8/25/2022 7:32 PM, Willi Egger via ntg-context wrote:
Hello!

I have a ConTeXt Lua Document where I need to have headertexts.

When running the enclosed file I get 6 pages where only page 1 and 2 have 
header texts and the others none. — Why is that?

Thanks for hints!
you use a function but headertexts are not frozen which meand that you need to do this:

        context.setupheadertexts(
            {
                function()
                    context("\\bf")
                    context(monthname)
                    return true
                end
            },
            {
                function()
                    context(year)
                    return true
                end
            },
                        {
                function()
                    context("\\bf")
                    context(monthname)
                    return true
                end
            },
            {
                function()
                    context(year)
                    return true
                end
            }
        )

the "return true" makes sure that the function stays around

I'm sure that you will wikify this ...

Hans



-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
       tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : https://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : https://contextgarden.net
___________________________________________________________________________________

Reply via email to