[NTG-context] whitespace inside a description

2018-11-30 Thread Pablo Rodriguez
Dear list,

I have the following sample:

\setupwhitespace[big]
\startsetups[small:whitespace]
\setupwhitespace[small]
\stopsetups
\definedescription
[description]
[setups={small:whitespace},
 inbetween={\directsetup[small:whitespace]}]
\starttext
\input knuth

\startdescription{Knuth}
\input knuth
\stopdescription
\stoptext

How can I get a different whitespace inside the description?

Many thanks for your help,

Pablo
-- 
http://www.ousia.tk
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

[NTG-context] vertically centering line numbers

2018-11-30 Thread Pablo Rodriguez
Dear list,

I have the following sample:

\setuplinenumbering[step=3, style=\tfxx]
\starttext
\startlinenumbering
\dorecurse{40}{This is a verse.\\}
\stoplinenumbering
\stoptext

Is there a way to center vertically the line numbers?

Many thanks for your help,

Pablo
-- 
http://www.ousia.tk
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___

Re: [NTG-context] PDF/A no longer compliant?

2018-11-30 Thread luigi scarso
On Fri, Nov 30, 2018 at 7:17 AM luigi scarso  wrote:

>
>
> On Fri, Nov 30, 2018 at 2:28 AM Rik Kabel 
> wrote:
>
>> On 11/4/2018 07:27, luigi scarso wrote:
>>
>>
>>
>> On Fri, Nov 2, 2018 at 7:06 PM Rik Kabel 
>> wrote:
>>
>>>
>>>
>> it should be fixed in the next beta.
>>
>>
>> I am afraid it is not fixed. The compilation of the wiki example now
>> fails with:
>>
>> lua error   > lua error on line 12 in file
>> c://Users/micro/Projects/TeX/ConTeXt/pdfa.tex:
>> ...ce0dde776fb1556f32e\formats\luajittex/lpdf-ini-macro.lua:236: attempt
>> to call global 'pdfsetomitcidset' (a nil value)
>>
>>
>> typo
>
> $ diff -u lpdf-ini.lua.orig lpdf-ini.lua
> --- lpdf-ini.lua.orig 2018-11-30 07:13:21.120218873 +0100
> +++ lpdf-ini.lua 2018-11-30 07:13:37.459920498 +0100
> @@ -233,7 +233,7 @@
>  end
>
>  function lpdf.setomitcidset(v)
> -return pdfsetomitcidset(v)
> +return pdf.setomitcidset(v)
>  end
>
>  do
>
> --
> luigi
>

better
$ diff -u lpdf-ini.lua.orig lpdf-ini.lua
--- lpdf-ini.lua.orig 2018-11-30 07:13:21.120218873 +0100
+++ lpdf-ini.lua 2018-11-30 10:02:57.250980666 +0100
@@ -233,7 +233,7 @@
 end

 function lpdf.setomitcidset(v)
-return pdfsetomitcidset(v)
+return setomitcidset(v)
 end

 do

-- 
luigi
___
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___