[NTG-context] Altering footnotes via \setupfootnotes

2017-03-24 Thread Lukas Prochazka
Hello, are there keys to \setupfootnotes to: - increase vertical space between two footnotes, - enable indenting paragraphs in the scope of footnotes? I tried some keys following wiki but with no success... Is there a way? Thank you in advance. Best regards, Lukas

Re: [NTG-context] lua tables - how do you cope?

2016-07-30 Thread Lukas Prochazka
Hello Thomas, here is my "dump()" I've been using for several years: function dump(arg, opts) -- .seen, .pfx if type(opts) == "string" then print(opts); opts = nil elseif opts == true then print("-- (dump)"); opts = nil end local pfx = opts and opts.pfx local seen = opts and

[NTG-context] Synchronize ERROR: unknown node type 12

2015-12-19 Thread Lukas Prochazka
Hello, I'm getting many error messages: " Synchronize ERROR: unknown node type 12 " with the latest beta: " mtx-context | warning: synctex is enabled ... This is LuaTeX, Version beta-0.87.0 (TeX Live 2016/W32TeX/dev) " and with the MWE: \starttext \section{Principy} \stoptext

[NTG-context] Problem interacting \definehead and \placecontent

2010-11-17 Thread Lukas Prochazka
Hello, I need to duplicate the \subsection command. The code is: --- \definehead[SSEC][subsection] \setuphead [SSEC] [after={ --- }] \starttext \placecontent \hairline \section{A} aaa \SSEC{B} bbb \subsection{C} ccc \stoptext --- It's OK that use of

[NTG-context] How to center a table horizontally ?

2010-11-17 Thread Lukas Prochazka
Hello all, this must be a really basic question, but I cannot find out the answer. I'm creating a table, but I cannot center it horizontally: --- \starttext \startalignment[center] \dontleavehmode \starttable[|c|] \NC CCC \NC\NR \stoptable \stopalignment \stoptext ---