On Tue, May 13, 2014 at 5:28 AM, Devendra Ghate
I expect follow MWE to produce a centered table. But it does not. Am I making any obvious mistake.
--------------- \definetabulate[centeredTable][|r|l|] \setuptabulate [centeredTable] [align={middle}] \starttext \startcenteredTable \HL \NC I want this table \NC aligned in the center.\NR \HL \stopcenteredTable \stoptext ----------------
This also *doesn't* work.
--------------- \setuptabulate [align={middle}] \starttext \starttabulate[|r|l|] \HL \NC I want this table \NC aligned in the center.\NR \HL \stoptabulate \stoptext ----------------
-- Devendra Ghate ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
I'd do such things with \starttext \input knuth\par \placetable[force,none]{none}{% \starttabulate[|r|l|] \HL \NC I want this table \NC aligned in the center.\NR \HL \stoptabulate } \input knuth \stoptext (the knuths are there only not to make the page look so empty, and the force makes it non-floating, and the nones are there to not have any caption (or even Table title)) but maybe there are better solutions? /Mikael