Paul Tremblay wrote:
Just as addition. If you want page number in the same (center) position in the footer, add \smash command to your example \setupfootertexts[Romanticism \hfill \pagenumber \hfill Civil Disobedience][] [][...] so \setupfootertexts[\smash{Romanticism }\hfill \pagenumber \hfill \smash{Civil Disobedience}][] [][...]
Thanks for the feedback. What does \smash do? If I don't use \smash, my footer text appears to be in the same position, in the center.
Ohh, my error. Correct code: \setupfootertexts[\rlap{Romanticism}\hfill \pagenumber \hfill \llap{Civil Disobedience}][] [][...] Consider \setupfootertexts[\rlap{A}\hfill\pagenumber\hfill\llap{B}][][][] If width(A)!=width(B) then \pagenumber is not in the center. \fill's add the equal space between A-\pagenumber and \pagenumber-B. If width(A-different-page)!=width(A) then (generaly) \pagenumber change position page-to-page. \rlap makes hbox of zero width with right overlapping, \llap with left. \smash do not change width but makes zero height and depth. That is not what we need. vit