Re: [NTG-context] WARNING: File path includes directory that doesn't exist

2016-07-30 Thread Thangalin
$ inkscape -V Inkscape 0.92pre1 unknown (Jul 30 2016) https://launchpad.net/~inkscape.dev/+archive/ubuntu/trunk I'm not sure if this version of Inkscape is at fault. It'd be cool if there was a way to specify the SVG to PDF converter program (e.g., to use rsvg-converter instead) from the command

[NTG-context] WARNING: File path includes directory that doesn't exist

2016-07-30 Thread Thangalin
Hi, Possible problem converting SVG to PDF. $ context --version mtx-context | ConTeXt Process Management 0.63 mtx-context | mtx-context | main context file: /opt/context/tex/texmf-context/tex/context/base/mkiv/context.mkiv mtx-context | current version: 2016.07.18 16:46 cd

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

2016-07-30 Thread Hans Hagen
On 7/30/2016 3:04 PM, Joseph Canedo wrote: If the requirement is to iterate on a table having the keys, values sorted by key (assuming the keys can be sorted), there are ways to do this. Please see http://lua-users.org/wiki/SortedIteration for an example (this just replaces pairs(t) with

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

2016-07-30 Thread Hans Hagen
On 7/30/2016 11:01 PM, Schmitz Thomas A. wrote: Thank you, but this is not what I’m looking for. I know how to sort a table, and I know the Lua table tutorial (the Lua wiki is, IMHO, really terrible and disorganized). I have to construct deeply nested tables and sometimes lose track of what

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

2016-07-30 Thread Schmitz Thomas A.
> On 30 Jul 2016, at 23:46, Lukas Prochazka wrote: > > Hello Thomas, > > here is my "dump()" I've been using for several years: Arthur, Lukas, these are both great and very helpful, thanks a lot! I feel bad for not knowing table.serialize (which can even be used with the

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

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

2016-07-30 Thread Arthur Reutenauer
On Sat, Jul 30, 2016 at 11:01:29PM +0200, Schmitz Thomas A. wrote: > Thank you, but this is not what I’m looking for. I know how to sort a table, > and I know the Lua table tutorial (the Lua wiki is, IMHO, really terrible and > disorganized). I have to construct deeply nested tables and

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

2016-07-30 Thread Schmitz Thomas A.
Thank you, but this is not what I’m looking for. I know how to sort a table, and I know the Lua table tutorial (the Lua wiki is, IMHO, really terrible and disorganized). I have to construct deeply nested tables and sometimes lose track of what is at what level of my table, so I was wondering if

Re: [NTG-context] gmane might go off-line soon

2016-07-30 Thread Arthur Reutenauer
> Long story short: the sole maintainer of gmane is getting fed up with ddos > attacks and is thinking about terminating the service. That’s sad :-( It really was a great service. I can’t blame the maintainer, of course. > Maybe the approaching end of gmane would be a good motivation to

Re: [NTG-context] inconsistent math fontsize

2016-07-30 Thread Jan Willem Flamma
> On 28 jul. 2016, at 00:46, Hans Hagen wrote: > > On 7/27/2016 2:29 PM, Jan Willem Flamma wrote: >> Dear list members >> >> Sofar, I’ve been using \qquad to separate two formulas side-by-side on a >> single line. >> To ensure consistency with spacing I want to change to using

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

2016-07-30 Thread Wolfgang Schuster
Joseph Canedo 30. Juli 2016 um 15:04 If the requirement is to iterate on a table having the keys, values sorted by key (assuming the keys can be sorted), there are ways to do this. Please see http://lua-users.org/wiki/SortedIteration for an example (this just

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

2016-07-30 Thread Joseph Canedo
If the requirement is to iterate on a table having the keys, values sorted by key (assuming the keys can be sorted), there are ways to do this. Please see http://lua-users.org/wiki/SortedIteration for an example (this just replaces pairs(t) with orderedPairs(t)). Hope this helps Joseph De :

Re: [NTG-context] (perhaps benign) difference in ebgaramond12-regular.tma after upgrade to 2016.07.30 00:26 beta

2016-07-30 Thread Hans Hagen
On 7/30/2016 2:10 PM, Joseph Canedo wrote: Hi Hans, Perhaps completely benign, but a bit strange difference I’ve spotted (because I log the ligatures of the font I use). After upgrade to 2016.07.30 00:26 I notice that 1 entry (only one which is a bit strange, because there are other

[NTG-context] (perhaps benign) difference in ebgaramond12-regular.tma after upgrade to 2016.07.30 00:26 beta

2016-07-30 Thread Joseph Canedo
Hi Hans, Perhaps completely benign, but a bit strange difference I’ve spotted (because I log the ligatures of the font I use). After upgrade to 2016.07.30 00:26 I notice that 1 entry (only one which is a bit strange, because there are other similar entries in the description table which were

Re: [NTG-context] \setupalign (protrusion and expansion) in notes

2016-07-30 Thread Pablo Rodriguez
On 07/30/2016 10:06 AM, Joseph Canedo wrote: > Had same problem for marginal notes, simply used the align= key to > specify hanging and hz. > [...] > I guess there is similar way to enable protusion and expansion for > footnotes. Setups are the way of doing it. I thought it might be interesting

[NTG-context] gmane might go off-line soon

2016-07-30 Thread Schmitz Thomas A.
Hi all (especially the gardeners), have you seen this post? https://lars.ingebrigtsen.no/2016/07/28/the-end-of-gmane/ Long story short: the sole maintainer of gmane is getting fed up with ddos attacks and is thinking about terminating the service. If I’m not mistaken, for the time being,

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

2016-07-30 Thread Schmitz Thomas A.
This is less a specific question about ConTeXt than a hope for good advice: I’m maltreating my xml files with a mixture of TeX and Lua. I want to extract and typeset information in different forms, so I first collect everything in lua tables, rearrange and order these tables and typeset the

Re: [NTG-context] Use \framedtext to write an algorithm

2016-07-30 Thread Fabrice Couvreur
Hi Wolfgang, That's great, I did not know but it's really convenient. Fabrice 2016-07-29 17:02 GMT+02:00 Wolfgang Schuster : > Fabrice Couvreur > 29. Juli 2016 um 16:43 > I know that Wolfgang wrote a module to reproduce algorithms, but

Re: [NTG-context] \setupalign (protrusion and expansion) in notes

2016-07-30 Thread Pablo Rodriguez
On 07/30/2016 12:01 AM, Hans Hagen wrote: > On 7/29/2016 10:32 PM, Pablo Rodriguez wrote: >> Hans, >> [...] >> Notes don’t inherit by default the \setupalign values. >> >> Wouldn’t it make sense that they share the same align values than the >> main text, unless other values are specified for