tabulate and header=repeat
Hello, I have a simple problem with headers and tabulate spread over multiple pages. In the following MWE, the header's \HL gets rendered twice on its first instance (the first page). My error must be something simple (and obvious)? Thanks Alan \setupbodyfont [dejavu,12pt] \setuptabulate[split=yes,header=repeat] \starttext \starttabulatehead \NC \type{\input} \NC text \NC\NR \HL \stoptabulatehead \starttabulate [|r|p|] \NC knuth \NC \input knuth \NC\NR \NC tufte \NC \input tufte \NC\NR \NC ward \NC \input ward \NC\NR \NC darwin \NC \input darwin \NC\NR \NC dawkins \NC \input dawkins \NC\NR \NC reich \NC \input reich \NC\NR \HL \stoptabulate \stoptext
Am 21.03.2015 um 18:22 schrieb Alan BRASLAU
: Hello,
I have a simple problem with headers and tabulate spread over multiple pages. In the following MWE, the header's \HL gets rendered twice on its first instance (the first page). My error must be something simple (and obvious)?
There are actually three different rule command (\FL, \ML and \LL) which are used from the \HL dependent on the position in the table and in the table header this auto selection can be wrong because ConTeXt uses \ML while \LL should be used instead. To fix the double rule on the first page use \LL as last rule in the header. \starttabulatehead \NC \type{\input} \NC text \NC\NR \LL \stoptabulatehead Wolfgang
On Sat, 21 Mar 2015 18:50:29 +0100
Wolfgang Schuster
in the table header this auto selection can be wrong because ConTeXt uses \ML while \LL should be used instead. To fix the double rule on the first page use \LL as last rule in the header.
Thank you. I have modified the wiki as well. Alan
participants (2)
-
Alan BRASLAU
-
Wolfgang Schuster